Jpg moves locations from page to page? css to blame?

Hi Everyone,
I'm not sure if this is the right place for this post, but if anyone can reccomend a good forum, either in adobe or not, that'd be great.
I have this little schematic version of this site I'm working on.  Everything in dreamweaver, the code, looks the same, and is positioned in the same place, but the logo location seems to change a little bit on each page... it's very frustrating.  I am using pikachoose, a jQuery slideshow plug-in, and was wondering if this has anything to do with it, or if it is in my CSS.
The page address is : www.rachelahampton.com/test/index.html
Try going to Furniture>Seating>Squam Chair and Gamp Chair, and see that the logo up top stays the same.
Then try going to About, or click on the logo at the top to go home, and you'll see that the logo ontop seems to jitter between the gamp/squam page and the home/about page.
If anyone could take a look and offer commentary on what is going on here I'd be much appreciative.
Thanks,
Rachel

Logo doesn't move for me in Firefox but it has a green border around it on some pages and not others.  To remove borders from linked images, add this to your CSS code:
a img {border:none}
Validate your code.  You have few errors in your lists.
http://validator.w3.org/
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Move text from pages to numbers

    I would like to move text from Pages to Numbers

    Hi Derfyef,
    Paragraph marks (returns) in Pages will create a new row in a Numbers table.
    Tabs (but not commas) in Pages will create a new column in a Numbers table.
    Pages:
    A B C
    D E F
    Copy, then click in a table in Numbers, Paste
    A
    B
    C
    D
    E
    F
    Regards,
    Ian.

  • Best way to move data from page to page inside app

    Hi all I started writing this and it got way to complicated to explain in full without a novel.
    Breif description. I am using query string that starts in the parent window (from href in json file) it then has to be moved into the iframe url when moving to other pages to avoid security as page and iframe are conflicting http and https. and cannot be accessed.. it seems there must be a better way.
    So my question is what is the best way in open platform to move data from one page to another?

    Hi Liam
    Small data just a webapp ID and I am using the URL. But if you pass a ID say from Json ie "href":"/Admin/AppLoader.aspx?client_id=dev-name&ID=111111" it gets passed to the page url. This can be referenced using document.referrer initially. As the app is inside another frame and url that is https there is security issue using parent.location between https and http. Fine but then if you move to a new page referrer is no longer as there is no real referrer and you have to use location but you cannot. Now the work around is to pass the value from the page url to the app url at the start. and then you get around http https security issue when using parent.location but this seems convoluted and like a work around. Is this really the only way or the best way or a bad way. without using other ways that seem over kill for 6 odd characters.

  • Cannot transfer .mov audio from pages to epub

    I am a total newbie at making epubs...
    I have dragged a .mov audio file made in quicktime into my pages document.  It is inline.  The audio file works when I click on it (speaker icon) in the pages document.
    After converting to epub, the speaker icon disappears and I have no audio available.
    Can anyone help?
    Thanks!
    I have pages version 4.1

    It's interesting that 'they' have decided to NOT let folks on 10.4 produce an ePub (from Pages). I understand that I cannot 'do' the whole ePub consumer side on this machine but I was hoping to get a bit of a headstart while on the road. (The mini at home base is running 10.6 and is my ePub production environment. That version of iWork9 does have the later Pages, which is why I was surprised when I could not find the same UI on my 'travel' machine.)
    As to why I don't upgrade the G4? I need one machine that can run Classic. So it will live at 10.4.11 for the rest of its life.
    I have my fingers crossed that today's announcement will include a suitable Macbook Air update ... one that is not too wide and/or too high. (The 13" 'books have been too large a footprint to replace my trusty 12" so I've been holding out...)

  • Javascript to move page from page library to document library

    hi friends
    my scenario is.
    i have to move page from page library to another library using only javascript.
    is it possible please help me.

    my working code
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script type="text/javascript">
    var _ctx;
    var _sourceFile;
    var _destinationlibUrl;
    var _destinationFile;
    var targetListItem;
    var itemId=10;
    $(document).ready(function () {
    $("#Archive1").on("click", function(){
    SP.SOD.executeFunc('sp.js', 'SP.ClientContext', CopyFile);
    function CopyFile() {
    //_ctx = new SP.ClientContext(siteUrl);
    _ctx = new SP.ClientContext.get_current();
    // Get the Web site that is associated with the client context.
    this.web = _ctx.get_web();
    _ctx.load(this.web);
    // Returns the list with the specified title from the collection.
    this.sourceList = this.web.get_lists().getByTitle('Pages');
    _ctx.load(this.sourceList);
    // Get the list items being selected.
    //var selectedDocuments = SP.ListOperation.Selection.getSelectedItems(_ctx);
    //this.currentItem = sourceList.getItemById(selectedDocuments[0].id);
    this.currentItem = sourceList.getItemById(itemId);
    _ctx.load(this.currentItem);
    // Get the file that is represented by the item from a document library.
    _sourceFile = this.currentItem.get_file();
    _ctx.load(_sourceFile);
    _ctx.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded),
    Function.createDelegate(this, this.onQueryFailed));
    // Delegate that is called when the query completes successfully.
    function onQuerySucceeded(sender, args) {
    if (_sourceFile != null) {
    _destinationlibUrl = web.get_serverRelativeUrl() +'/PageArchive/' + _sourceFile.get_name();
    alert('Now moving to: ' + _destinationlibUrl);
    //_sourceFile.moveTo(_destinationlibUrl, 1);
    _sourceFile.copyTo(_destinationlibUrl, 1);
    notifyId = SP.UI.Notify.addNotification('Moving file ' + _sourceFile.get_serverRelativeUrl() + ' to ' + _destinationlibUrl, true);
    _ctx.executeQueryAsync(
    function (sender, args) {
    SP.UI.Notify.removeNotification(notifyId);
    SP.UI.Notify.addNotification('File copied successfully', true);
    // window.location = web.get_serverRelativeUrl();
    function (sender, args) {
    SP.UI.Notify.addNotification('Error copying file', false);
    SP.UI.Notify.removeNotification(notifyId);
    alert('Error occured: ' + args.get_message());
    // Delegate that is called when the destination file checkout completes successfully.
    // Delegate that is called when server operation is completed with errors.
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    </script>

  • How do I move apps from one page to another?

    How do I move apps from one page to another?

    From a previous thread:
    Touch and hold any icon for a couple of seconds. They'll all start to wobble. Touch and drag the one you want to move to the side of the screen and the next screen will appear; drop the icon on whatever screen you want it on.
    You can also do it quicker in iTunes - connect the phone and click the Apps tab in the main window. You'll see a picture of your phone with the apps laid out. Just click and drag

  • How do you move icons from one page to another?

    How do you move icons from one page to another?

    hold down on an app till everything start shaking then move it to one side of the ipad and it'll change "pages" after a second or two.

  • In iWeb, how do I move pictures from one page to another??

    In iWeb, how do I move photos from one album/page to another?

    If there are a bunch of then, either drag the mouse over them to select them, or select them one by one while holding down the Command key.
    Then copy - Command C
    Now paste them onto the new page - Command V

  • Move group of pages from one InDesign file to another InDesign File using VB.Script

    Dear team,
    I am trying to move group of InDesign pages from one indesign file to another indesign file using vb.script.
    I have written the code like
    Dim Pages=IndDoc.Pages
    Dim Mytype=TypeName(Pages)
    Pages.Move(InDesign.idLocationOptions.idBefore,IndDoc1.Pages.LastItem)
    but it is giving an error as method Move is not a member of Pages 
    please give mme the solution to move the Multiple pages or a group of page from one Indd to another Indd.

    Hey Peter, if I wan to move several page that part of Auto Flow text, I checked the "delete page after moving" but the content still there, not deleted.
    Is there any way to delete it automatically, just to make sure I have moved that autoflowed page?

  • Secondly, i used migration assistant to move everything from old laptop to new. when i used pages on new machine, 10.8.5 operating system, there is no click for file save as in the menu, only flle save. why?

    secondly, i used migration assistant to move everything from old laptop to new. when i used pages on new machine, 10.8.5 operating system, there is no click for file save as in the menu, only flle save. why?

    Hold down Option key while clicking on menu bar and Save as will appear.

  • I have 5 jpgs - 5 scans from A4 - and want create a 5 page pdf document, each page a jpg, what to do

    I have 5 jpgs - 5 scans from A4 - and want create a 5 page pdf document, each page a jpg, what to do? what is the easiest way?

    Mylenium gave you the exact name of the function. You could just copy that and paste it into the Google search form. You would then end up with this:
    http://tv.adobe.com/watch/learn-acrobat-9/combining-documents-into-a-single-pdf/
    Just try it out.

  • When i watch a movie trailer from the home page, it continually restarts.  How come?

    I Noticed that when watching the movie trailers from the apple home page, the vide will start and go a random amount of time and then restart.  This happens over and over.  Can anyone help?

    I'm probably not describing these terms correctly but here goes.  The progress bar starts and you can see the downloaded portion ahead of the actual time bar.  I don't even hit start and once the downloaded section gets out far enough, the movie starts by itself.  In the past if the actual time bar caught up with the downloaded portion it would just freeze until more had downloaded.  Now I guess what's happening is if it gets too close, it just restarts?  I tried what you said and paused the trailer until the whole trailer downloaded.  When I did that, the trailer played through without restarting.  Is there a setting to adjust this or am I just a victim of slow DSL?

  • Image loses resolution when converting from pages to jpg

    I created an ad for my son's yearbook in Pages.  It is 9MB but I need to submit as jpg.  The only way I can figure to do that is to convert from Pages to PDF and from PDF to JPEG.  However when I do this, it shrinks from 9MB to just over 1MB which is too low rez.  Can anyone help?  I'm on a deadline. Thanks!!!

    OSX outputs pdfs at 72dpi if there is any transparency such as shadows, reflections, charts and of course directly specified transparency.
    The jpeg is generated from a pdf and is the wrong method of producing an ad, which should remain text/vector to stay sharp, with photographic style images at 300dpi.
    jpegs should only be used for purely photographic material because it makes everything else fuzzy.
    Your ad should be supplied as a vector pdf. If it has photographic material do not use transparency effects and make sure the images are at least 300dpi at final size.
    Peter

  • HT5622 I have accepted the update that was sent this morning and now I can't move away from the accept agreement terms page. I click on accept, but nothing happens and I can't get any other screen to come up.

    After the update this morning, I cannot move away from the agreement, terms, etc. page - I click on accept, but nothing happens and I can't get any other screen to come up.

    Hi chill1946s,
    Here are a couple things to try:
    Restart and / or reset your device
            iOS: Turning off and on (restarting) and resetting
             http://support.apple.com/kb/HT1430
    Check your settings for Safari -- enable cookies and turn off private browsing
             Safari settings - iPad User Guide
             http://help.apple.com/ipad/7/#/iPadabb26b71
    Cheers,
    - Judy

  • Move items from one page to another

    this is the URL i am using to send parmeters from page one to page two.
    http://lpar106:7779/pls/apex/f?p=111:2:463000813039856:::::P1_ACCOUNT_NO,P1_COMPANY_INFORMATION1:&P1_ACCOUNT_NO.,&P1_COMPANY_INFORMATION1.
    this is the SQL i am using to receive the parmeters from the URL.
    select
    'f?p='
    ||:ACCOUNT_NO|| :COMPANY_INFORMATION1||'::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:'
    FROM
    select
    "LOAD_ID",
    "ACCOUNT_NO",
    "PERMIT_NO",
    "PERMIT_YEAR",
    "PAYMENT_TYPE",
    "PERMIT_VOIDED",
    "NO_OF_AXLES",
    "AXLE_1_FEET",
    "AXLE_1_INCHES",
    "AXLE_2_FEET",
    "AXLE_2_INCHES",
    "AXLE_3_FEET",
    "AXLE_3_INCHES",
    "AXLE_4_FEET",
    "AXLE_4_INCHES",
    "AXLE_5_FEET",
    "AXLE_5_INCHES",
    "AXLE_6_FEET",
    "AXLE_6_INCHES",
    "AXLE_7_FEET",
    "AXLE_7_INCHES",
    "AXLE_8_FEET",
    "AXLE_8_INCHES",
    "PERMIT_COST",
    "PERMIT_TYPE",
    "LOAD_TYPE",
    "TRUCK_TOTAL_WEIGHT",
    "TRUCK_TOTAL_WEIGHT_DESC",
    "TRUCK_WIDTH_FEET",
    "TRUCK_WIDTH_INCHES",
    "TRUCK_WIDTH_DESC",
    "TRUCK_LENGTH_FEET",
    "TRUCK_LENGTH_INCHES",
    "TRUCK_LENGTH_DESC",
    "TRUCK_HEIGHT_FEET",
    "TRUCK_HEIGHT_INCHES",
    "TRUCK_HEIGHT_DESC",
    "TRAILER_LOAD_FEET",
    "TRAILER_LOAD_INCHES",
    "TRAILER_LOAD_DESC",
    "COMPANY_INFORMATION1",
    "COMPANY_INFORMATION2",
    "TRUCK_MAKE",
    "TRUCK_LICENSE_NO",
    "TRUCK_LICENSE_ST",
    "TRAILER_MAKE",
    "TRAILER_LICENSE_NO",
    "TRAILER_LICENSE_ST",
    "ORIGIN",
    "DESTINATION",
    "ROUTING1",
    "ROUTING2",
    "CMNT1",
    "CMNT2",
    "CMNT3",
    "CMNT4",
    "CMNT5",
    "CMNT6",
    "CMNT7",
    "CMNT8",
    "CMNT9",
    "CMNT10",
    "CMNT11",
    "COMMODITY_DESC1",
    "COMMODITY_DESC2",
    "PERMIT_BEGIN_DATE",
    "PERMIT_END_DATE",
    "PERMIT_ISSUE_DATE",
    "PERMIT_VOID_DATE",
    "OVERRIDE_SINGLE_AXEL_WEIGHT",
    "OVERRIDE_DOUBLE_AXEL_WEIGHT",
    "OVERRIDE_TRIPLE_AXEL_WEIGHT",
    "DELETE_AXLE",
    "CHECK_NO",
    "FRONT_AXLE_WEIGHT",
    "MIDDLE_AXLE_WEIGHT",
    "REAR_AXLE_WEIGHT",
    "TRUCK_TOTAL_FEET",
    "TRUCK_TOTAL_INCHES",
    "AXLE_SPACING",
    "PERMIT_FEES",
    "HOLIDAY_MSG",
    "GOVERNMENT_PERMIT",
    "OVERRIDE_AXEL_ALL",
    "MULTI_ST_TAG",
    "PERMIT_AGENT_ID",
    "PERMIT_SPECIFICATIONS1",
    "PERMIT_SPECIFICATIONS2",
    "SUPER_LOAD_AXEL_NO",
    "AXEL_BOOSTER_WEIGHT",
    "MULTISTATE_PERMIT",
    "MODIFICATION_COUNT",
    "USDOT_NO"
    from "LEGACY_ODOW_PERMITS"
    where
    (upper(nvl(:P1_SELECT_PERMIT,"ACCOUNT_NO")) is null)
    or((upper(ACCOUNT_NO)) = (upper(nvl(:P1_SELECT_PERMIT,"ACCOUNT_NO"))))
    running the above SQL gives me this on page 2 instead of the report.
    'F?P='||:ACCOUNT_NO||:COMPANY_INFORMATION1||'::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:'
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    f?p=::::P1_ACCOUNT_NO,P1_COMPANY_INFROMATION1:
    If i leave off the first selet statement i get the right parmeters in the address at the top of oage two
    http://lpar106:7779/pls/apex/f?p=111:2:463000813039856:::::P1_ACCOUNT_NO,P1_COMPANY_INFORMATION1:000215,fuchs
    Does anyone have any ideas? thank you

    First of all, your link looks strange:
    http://lpar106:7779/pls/apex/f?p=111:2:463000813039856:::::P1_ACCOUNT_NO,P1_COMPANY_INFORMATION1:&P1_ACCOUNT_NO.,&P1_COMPANY_INFORMATION1.
    would mean, you want to go to page 2 but you are populating items on page 1
    (P1_ACCOUNT_NO) with the values of itself...?!!!
    I have couple of examples on how to create links. I suppose, your links are generated
    in a report:
    http://htmldb.oracle.com/pls/otn/f?p=31517:23
    Denes Kubicek

Maybe you are looking for