Photos misaligned on the page once published...

The photos are perfectly placed in the iWeb project. I publish. The photos have moved in their positioning ... I've never seen this happen before. I've remade the page several times. The photos on the other pages are exactly where they should be once published. What might be happening here?
http://lowryolafson.com/lowrysnewcd.com/borderland/the_band.html
Each photo should be lined up next to the name of the performer. They are in the original iWeb project.
B.

This is quite difficult to demo in written text, but you can have image inside a text box and this text box is inside another text box as here:
the red border box is the image, the white border box is the inside text box and the black border box is the outside text box.
You have to copy the image (red border) into the small text box (white border) , then copy the small text box (white border and its image) and paste it inside the large text box (black border), then use text wrap around the smaller text box to have the final effect.
here is the end result: http://test.cyclosaurus.com/imgTT/Blank_2.html
note that this method will allow you to have padding between the photos and the text, there is no other way around it.

Similar Messages

  • My problem started when i connected my iphone5 into mac book and i started restoring data, by that i lost my recent photo's ,i tryed a program but it was recovering the previous photo's not the recent once ... need ur help what to do plz....thank u

    my problem started when i connected my iphone5 into mac book and i started restoring data, by that i lost my recent photo's ,i tryed a program but it was recovering the previous photo's not the recent once ... need ur help what to do plz....thank u

    Not much you can do.  You overwrote your current data with older data when you restored the phone from that backup.  Your data's gone.

  • Firefox does not load the iframes until i refresh the page once i refresh the page it does work fine any idea y its so.....

    when i refresh the page all the details rellated to product is loading fine..the page contains two iframes with different src...the src for iframes is being provided from javascript

    Greasemonkey has a file which has metadata on your installed scripts. I remember looking at it once when there was a controversy about updates, but I don't know how to mine it for data.
    What happens if you exit Firefox and startup in your old profile and install GM 1.14 beta? Does that rescue your original setup?

  • Fitting photos and sizing the page.

    This is probably my 100th most stupid question but here goes........ Everytime I add more than a few pictures they disappear. Another words the layout of the page only allows a few pictures. It is very frustrating. What am I doing wrong?
    Thanks

    More details are needed about what you are doing & seeing on the screen...
    "Everytime I add more than a few pictures..." - How are you adding the pictures? Drag & drop from iWeb's Media Browser? Or how?
    "...they disappear." - At what point exactly do they disappear? Right when you drop them into the page, or when you re-open iWeb later?
    Any extra info you can provide will help forum readers to help you.

  • How to add html?  The HTML snippet does not work.  Whatever I add, (a "like button, SEO key words, etc.), does not appear on the site once published.

    I am trying to add html to my website created in iWeb, (a "like" button, for example).  I paste the HTML language into the HTML Snippet window, but it does not show up ion my published page.  Any advice?

    I have put code into two html snippets, (per facebook instructions).  Should they go together?
    First snippet:
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "http://connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    Second snippet:
    <div class="fb-like" data-href="http://www.bonniecrockettconsulting.com" data-send="true" data-width="450" data-show-faces="false"></div>
    Thanks!

  • How can I centre the page when publishing?

    Hello,
    How can I avoid a big gap on top during preview the site? Or how can I centre the entire page to the screen precisely?
    Thanks.
    Alex

    Make sure your Top padding is set to '0' in your site properties dialogue box. (File/Site Properties)
    Also make sure the check mark is on to Center your site horizontally.

  • Adobe Reader downloaded 10.1.13 this morning.  Now downoaded pdf docs show text but no photos included on the page.  What do I do?

    How do I get pdf documents that I have received to also show the included photos?

    See if this helps: https://forums.adobe.com/thread/1681555

  • How do i attach a photo to an email without it appearing as a whole photo on the page

    When I try to attach a photo from  iPhoto to an email, the whole photo shows on the page and I cant seem to be able to attach it as an attachment. 

    Mail displays image attachments inline. The recipient may or may not see them that way, depending on the client program he or she uses.

  • Quicktime movie - publishes a ghost file, placing on the page

    I have two questions.
    First - the ghost file
    I dragged a Quicktime movie file to a page and then published to a folder. I realised that I had attached a 27Mb file instead of a smaller file (750k) that I had meant to. I deleted the large file (select/delete) and dragged the new file on to the page and published to a new folder. However the large file keeps publishing even though I thought I had deleted it. I always end up with the large file and small file in the published folder. How can I stop this happening?
    Secondly - placing on a page
    The QT movie has an area above the control bar for a graphic which I didn't fill. How can I accurately place the QT file on the page so I can line it up with text - the graphic box seems to stop text flowing around it or placing it where I want it.
    Thanks

    I suspect your ISP is serving you an older "cached" file instead of the new "fresh" one. More common overseas than here in the U.S. and some ISP's are worse than others.
    Try "refreshing" the page (Command-R in your browser) to see if it now finds the new page.
    If that fails (and it may because these ISP's are so aggressive about caching) try adding a question mark (?) to the end of the address in your browser:
    apple.com becomes apple.com?

  • How to check whether a page is published?

    Hi
         I have a requirement where i need to check a page and print its published date only if the page is published and active. How can i acheive this exactly? What properties in the CRX exactly will tell me if the page is in published state or not?
    Thanks
    Veena

    Hi Veena,
    On the Publish server you can run the below query to see what Pages where activated during the dateTime range you need. Change the xs:dateTime values based on the date range that you need.
    ====
    /jcr:root/content//*[@jcr:created >= xs:dateTime('2013-04-09T00:00:00.000+02:00') and @jcr:created<= xs:dateTime('2013-04-11T00:00:00.000+02:00') and jcr:primaryType='cq:PageContent']
    ====
    Please note the filter - jcr:rimaryType='cq:PageContent' - in the query. Use this if you only want to check for the pages that got activated. You can remove this filter if you want to check for all content (like images, etc) that got activated.
    The results of this query should give you a list of everything that is currently residing on the Publish within a date range when they were activated.
    Hope this helps.
    Thanks
    Ameeth

  • How can I name files separate from the page titles on the menu options?

    Ok, this is so much of a pain. I use a unix based web-server so the content is very case sensitive, and having spaces in the file names is just unmanageable. So.. how can I have pretty menu titles but have real world filenames?
    Presently I have to generate the pages, drop to vi and edit every frickin file to change the spaces to '_' characters and stuff. Depending on how many pages I have takes quite a long time.
    Anyone figured out a way to get around the stupid apple file naming convention ??
    /bk

    Thanks, I was afraid that was the case. So to have normal filenames that work cross platform I've got to manually tweak the pages once they are done. I suppose I was just hoping there was some 'expert' edit mode where I could have names for the files, vs names for the pretty menu items. Oh well, its not that bad I suppose it takes me say a day to manually code up a multi page site by hand, so if I can blow out a muliti page iWeb site in under an hour and then take another hour to tweak the code its still a win.
    Thanks again!!

  • MacBook Pro with OSX 10.7.3 using Firefox 10.0.2 no longer shows photos included in newspaper page downloads.

    Using MacBook Pro OSX 10.7.3 and Firefox 10.0.2 when downloading pages via internet of newspapers such as Toronto Star for example, photos included in the page or item download are absent from the download. There is a box with a line margin around the space for the photo, and the written description of the photo is present.
    Firefox is browser of preference and every version prior to most recent update has functioned perfectly.
    This is a new problem!
    Thank you.

    If images are missing then check that you aren't blocking images from some domains.
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Make sure that you do not block third-party images, the permissions.default.images pref should be 1.
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *http://kb.mozillazine.org/about:config
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Comments and Comment icons will be moved to the botton of the page

    Why are the icons be moved to the bottom of the page once I shared it with acrobat.com The icons became very small, and it looks, that they has diapeared.
    I am using Window 7
    Acrobat X 10.1.3

    Try the free LibreOffice !
    Yvan KOENIG (VALLAURIS, France)  samedi 10 décembre 2011 10:03:19
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Variations - how to make page get published automatically ?

    Hello guys,
    I am working with multi-lingual publishing site (English and Arabic).
    I have created Variations and set automatic creation of page of English
    Version to Arabic Version.
    Issue : When English Version Page is created and Published,
    Arabic Version is also created but Arabic Version of page is in checkout mode and it is not published.
    I want to make all arabic versions of the page in publish mode. 
    Is there any configuration or something so all the pages of arabic gets published automatically whenever it gets created ?
    Thanks,

    Hi Soyeb,
    so in that case you will need to write some code to do that by adding event handler
    this contains the event handler
    http://blogs.technet.com/b/stefan_gossner/archive/2011/11/16/sharepoint-variations-the-complete-guide-part-3-triggers.aspx
    this contains the code to check in
    https://dkolitha.wordpress.com/2011/05/13/publishing-pages-check-in-file-programmatically/
    http://blogs.msdn.com/b/sowmyancs/archive/2008/03/15/create-publishing-pages-in-portal-sites-programmatically.aspx
    Kind Regards,
    John Naguib
    Technical Consultant/Architect
    MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation
    Please remember to mark your question as answered if this solves your problem

  • Alert! The page yu are trying to view cannot be shown because an erros in the data trabnsmission was detected. What is causing this error?

    when visiting the website www.ontwowheels.nl I get the error:
    Alet. The page you are trying to view cannot be shown because an erros in the data transmission was detected. I than have to clear my history before I can see the page once. After a visit I get the Aleret again. What can cause this error? When I use IE there is not such a problem. Also when I use IE TAB all is fine

    From the http log:<br>
    <br>
    nsHttpTransaction::ParseHead [count=236]<br>
    nsHttpTransaction::ParseLine [HTTP/1.1 304 Not Modified]<br>
    nsHttpResponseHead::ParseVersion [version=HTTP/1.1 304 Not Modified]<br>
    Have status line [version=11 status=304 statusText=Not Modified]<br>
    nsHttpTransaction::ParseLine [Content-Type: text/html]<br>
    ParseContentType [type=text/html]<br>
    nsHttpTransaction::ParseLine [Content-Length: ]<br>
    invalid content-length!<br>
    nsHttpTransaction::Close [this=4e23aa0 reason=804b001d]<br>
    nsHttpConnectionMgr::ReclaimConnection [conn=d1e980]<br>
    STS dispatch [3b04b20]<br>
    nsHttpConnection::CloseTransaction[this=d1e980 trans=4e23aa0 reason=804b001d]<br>
    nsHttpTransaction::Close [this=4e23aa0 reason=804b001d]<br>
    <br>
    Firefox is receiving malicious content-length<br>
    Reason 804b001d ->> NS_ERROR_CORRUPTED_CONTENT <br>
    A transport level corruption was found in the source document. for example<br>
    a document with a calculated checksum that does not match the Content-MD5<br>
    http header.<br>
    <br>

Maybe you are looking for

  • HOW CAN I CREATE A VIEW FROM SAME TABLE WHERE I NEED COLUMNS DETAILS FROM DIFFERENT ROWS IN THE SAME TABLE

    i have a table1 on the top, but i want to create a view from table 1 as  view mentioned beneath the table 2. Could any of you please help me. table1 ID office employee activity 1 246 -9999 698 2 ##-99 21480 698 3 104 -9999 7025 4 ##-99 88908 7025 5 1

  • Error while viewing the PDF

    Hi, Can I get any solution to the below issues. When I open the pdf and scroll down I got the error message Could not find the Extended Graphics Stage named 'GS1'.  After this all the pages are shown as blank. And I can not able to view any content o

  • Exporting to PDF, less than optimal font rendering...

    Font doesn't display as sharp in pdf as it does in source InDesign file. See sample and pixilation of text edges. I am viewing on my iMac Retina, and also on MBP retina, and it's the same either way. Yes, I am exporting with "Print" settings, and tri

  • Non-breaking hyphens

    Non-breaking hyphens in WebHelp do not work (the hyphenated work breaks at the end of the line) when the help system is displayed in Internet Explorer, although they work fine (keeps the hypenated word together) when displayed in another browser such

  • Output in report format

    Hi all, i need to write a query that returns me the data as below: deptno-gse-non_gse-grand_total sales-3400-1600-5000 accounting-1500-1400-2900 hr-1200-1400-2600 total-6100-4400-10500 gse,non_gse are from single column gse_nongse.