How can I get my website to display the same in multipul browsers?

I am having trouble displaying my webpage in different browsers. I have run it through html & css validators and they can't pick up on any faults which would through the site out of line.
When I display the same code on different computers, different aspects of the pages change even though the files are exactly the same.

Start by running your page through the validator:
http://validator.w3.org/
You have some elements which are not nested properly such as scripts running outside of the head and body, required attributes missing, tags missing opening or closing, a <br /> tag in between </td> and <td>.  Then you can ignore the stuff about Flash because the Adobe codes for Flash and Spry never seem to validate.  Some of the other errors at the bottom like no </body> tag can be ignored because they are there, it just means there is a tag not closed before the end of the body so it generates an error saying the body was not properly closed.  The lines below that with tag mismatches will help you determine what is and what is not closed.
If you get that done and still have errors please let us know what browser/version/error you are having an issue with.

Similar Messages

  • How can I get pubished parameters to display the available settings

    how can I get pubished parameters to display the available settings?

    according to the online help, I'm supposed to click on Title to get to the titles settings as follows
    "Adjust a title’s settings
    You can modify a title’s default settings in the Title inspector.
    Select a title in the Timeline.
    Choose Window > Show Inspector (or press Command-4), and click the Title button at the top of the pane that appears.
    Adjust the available settings as needed.
    Note:  You can also keyframe many of the settings in both the Title and Text inspectors."
    Gsoing to the Text inspector, there does not seem to be anything in the menu where I can change the color of the text.   Based on the photo that appears with the above instructions --it appears the ability to change ink color is under the Published Parameters that is the menu I cannot get to 'drop'

  • How can I get iCal not to show the same birthday dates from my iCloud

    How can I get iCal not to show the same birthday dates from my iCloud?

    You don't need them stored locally for a backup. You can manually export your contacts as archive for backup. Also, if you are backing up with Time Machine, you already have a backup. If your hard drive crashed, you would have to rely on your backup or iCloud anyway.
    So, if you're comfortable with that, sign out of iCloud. Choose to delete contacts from the computer. When you sign back into iCloud, you should only have iCloud contacts listed in AB. When you open iCal, you should only have one listing for birthdays.
    The other alternative is to disable the Birthday c.alendar and create one manually.

  • How can I get my ipad to reflect the same playlist order that appears on my computer?

    How can I get my ipad to reflect the same playlist order that appears on my computer?  My computer has the exact desired order of playlist, but once the system is synced, the ipad does not reflect the propper order.

    In iTunes with your playlist shown in the correct order, right-click on the playlist name in the side-bar and click Copy to Play Order. Enable the side-bar with CTRL+S if necessary. Sync. Note also that the column you are sorting on should have the small triangle pointing upwards, otherwise the songs will play in the reverse order. You may also find that you need to first remove, and then add back the playlist to the device if syncing doesn't update it properly. See this post for more.
    tt2

  • How can I get a picture to display the date it was taken?

    How can I get a picture taken by my z10 to display the date it was taken?

    Gabrielamck wrote:
    How can I get a picture taken by my z10 to display the date it was taken?
    The only way to do so, is by manually renaming the picture
    Using the Playbook and the Z10 and the Z30 and loving them
    Martin

  • How can I get Firefox 4 to display the URL of active tabs in the location bar so I can see and copy it?

    The only URL that I ever see in the location bar is the last one I typed there. No matter which tab I activate, the last typed URL is displayed. When I need to copy the URL of an active tab to paste into an email or something I can't see it.
    The location bar used to display the URL of each active tab and you could simply click in the address field and the URL would be highlighted so you could edit/copy it or jump to the end of a very long URL to see the final file name.
    I can't get this feature to work and I really need this feature as I need to copy URL's quite often. When I have multiple tabs active I sometimes forget which one is for which domain and need to see the URL. It is very annoying to surf blind.
    Please help me with this issue as quickly as possible so I can once again do my work easily and with the firefox browser instead of chrome. :(

    A couple of possible causes.
    The first is the file that stores details of browsing history and bookmarks is corrupt. For details on how to fix that see http://kb.mozillazine.org/Locked_or_damaged_places.sqlite
    Another possible cause is an add-on interfering with the location bar. To test this, use the procedure in this link - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • How can I get keys from Hashtable in the same order?

    Hello, everyone.
    I have a Hashtable containing key-value pairs, I need to get the keys in the same order as I use
    method put(key,value) to save the key-value pairs. But I can only find Hashtable.keys() to fetch the keys in form of Enumeration and when retrieve the keys from the Enumeration,they are not in the original order!
    The following is my code:
    Hashtable ht = new Hashtable();
    ht.put("Name","Harry Bott");
    ht.put("Gender","Male");
    ht.put("Age","25");
    String[] Items = new String[ht.size()];
    Enumeration e = ht.keys();
    int i = 0;
    while(e.hasMoreElements()) {
    Items[i++] =(String)(e.nextElement());
    The Items contains the keys but they are not in the original order.
    Does anyone know how to get the keys from a Hashtable in the same order when they're put?
    Thank you!

    yeah, another solution is to stored keys on a Collection at the same time you put them on the HashMap with its values.
    Then when ur going to retrieve objects from the Map u iterate the Collection that has the ordered keys and use them.

  • How can I get a container to be the same size as all its children

    In my TitleWindow, I have two children that size themselves
    dynamically.
    No problem, TitleWindow also sizes itself to completely show
    both children.
    Now I have an additional child that I can only position
    correctly if I set TitleWindow's layout parameter to absolute.
    The third child now positions itself correctly on top of the
    first child.
    But now TitleWindow is only as big as the first child and I
    have to scroll to see the second child.
    How can I force TitleWindow to be the size it was when layout
    was set to vertical?
    Doug

    Hi Doug - What exactly are you trying to do? Is the third
    child being added dynamically, and you want it added above the
    first child? If so, you can use the addChildAt() method when adding
    the child to the container. addChildAt() takes an index and the
    child object is added at that index and all other children are
    reshuffled to maintain the ordering. IE:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical">
    <mx:TitleWindow layout="vertical" id="tw">
    <mx:Button id="a" />
    <mx:Button id="b" click="go();"/>
    </mx:TitleWindow>
    <mx:Script>
    <![CDATA[
    private function go():void
    var c:Button = new Button();
    c.label="new";
    tw.addChildAt(c, 0);
    ]]>
    </mx:Script>
    </mx:Application>
    Does that help, or am I misinterpreting what you're trying to
    do?

  • Downloading TV shows from itunes - episodes appearing seperately not all under the same series despite all the information being the same.  How can I get them to appear under the same series

    Just that
    I have many series - NCIS, West Wing etc where some episodes appear under the series and some appear on their own.
    I have checked the info anf they appear to be identical.
    How do I get them to group together corectly?

    After a couple of days, I'm noticing that the repeat(ing) offenders have more than 10 episodes, and seem to keep repeating them every time I sync.
    They only show once in my phone and in the iTunes Podcasts, but through iTunes and looking at what's in my phone is when I see the repeats.
    Even after I've marked a podcast as played, and deleted it from within my phone, as well as telling iTunes to delete the played episodes, it still shows multiples of the played episodes.
    There doesn't seem to be any rhyme or reason to it either. They aren't the newest ones either.

  • How can i get outgoing mail to display the "from" email address

    I have an ipad model A1474  running iOS 8.0.2.
    When I send email, I can't figure out how to get the "from" field appear in outgoing messages.
    Any ideas?

    according to the online help, I'm supposed to click on Title to get to the titles settings as follows
    "Adjust a title’s settings
    You can modify a title’s default settings in the Title inspector.
    Select a title in the Timeline.
    Choose Window > Show Inspector (or press Command-4), and click the Title button at the top of the pane that appears.
    Adjust the available settings as needed.
    Note:  You can also keyframe many of the settings in both the Title and Text inspectors."
    Gsoing to the Text inspector, there does not seem to be anything in the menu where I can change the color of the text.   Based on the photo that appears with the above instructions --it appears the ability to change ink color is under the Published Parameters that is the menu I cannot get to 'drop'

  • How can I get a banner that stays the same?

    I basically want to have a banner on my website like the adobe one at the top of this very site. Where however far you scroll out it can always be seen. I also want to know how to do this with my background image. I know how to stop it from scrolling just not scalling. Thanks, for your help!!

    CSS:
    body  {
    background: #000 url(your-BG-image.jpg) no-repeat center center fixed;
    /**for Safari,Chrome**/
    -webkit-background-size: cover;
    /**for Firefox** /
    -moz-background-size: cover;
    /**for Opera**/
    -o-background-size: cover;
    /**for other browsers**/
    background-size: cover;
    Nancy O.

  • How can I get my layout to look the same across multiple browswers?

    Hello forums!  How are you guys?
    I use Dreamweaver to edit my layout for my site.  However it looks fragmented on certain browsers and perfect on others. 
    www.ifuxkswiththat.com is the site.
    Is there something that can keep this uniform amongst other browsers?
    Check it on yours...it might work for you and it might not

    Your best bet is to get it right in something like Firefox or Safari, and then use some conditional CSS to tweak it in IE browsers.
    So put things like this in your header :
    <!--[if IE 5]>
    <style type="text/css">
    /* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */
    #outerWrapper #contentWrapper #leftColumn1 {
      width: 16em;
    #outerWrapper #contentWrapper #rightColumn1 {
      width: 16em;
    </style>
    <![endif]-->
    You can specify the particular IE browser above or use, for example <!--[if lte IE 7]> for IE 7 and below, or <!--[if lt IE 7]> for IE 6 and below.

  • When i click on a photo file in windows , elements opens, then i have to go back into windows and click again to open file , earlier version opens program an file how can i get elements 12 to do the same?

    Elements

    The way I got around the situation was to write a custom folder action and attach it to my Downloads folder. The good thing about this is that it works irrespective of the browser du jour I'm using.
    This way you can define any filetype you're interested in to auto-open when a file is created in the Downloads folder (or any other folder of your choosing).
    It's not that tricky to add. I think I posted the code here many moons ago so I'll try and track it down...
    Edit: It was a post to macosxhints.com that I last linked to: http://www.macosxhints.com/article.php?story=20050122214044554#comments
    Hope some of that helps.

  • How can I get iTUNES library to display renamed files and folders (renamed with Windows Explorer)?

    How can I get iTunes library to display the new names and organisation of tracks and albums (ie files and folders) that I have renamed and reorganised (using Windows Explorer) having previously imported them using iTunes?
    (Even when I relocate "lost" tracks in iTunes (using the drop down menu facility to view in Windows explorer), although iTunes will then play the track, and knows where to find it, it refuses to display the track with its correct (new) name, or show it the correct (new) album.  That means I have lots of things called "Untitled" and "Track 01" etc, all of which have actually been renamed, but iTunes does not seem to have the capability to recognise the changes and update its library listing.  Another example - a Tchaikovsky CD with 3 major works in 13 tracks insists on displaying in iTunes as 13 tracks in one album, despite the fact that I have reorganised the tracks into 3 albums - two being Swan Lake and The Nutcracker - and renamed the individual tracks to a more useable format.)

    Thanks for your replies ckuan
    I agree with Tgod that your first solution does not work.  It appears unpredictable whether the old or new file names are listed when you drag the folders into iTunes from Windows Explorer.  The folder structure is completely missing.  I reckon if you have to muck around spending days/weeks/months finding out how to fix links to a secret meta-file (obviously designed by some deep-cover microsoft worm working in the Apple!), then it's pretty obvious that almost any alternate way of doing this would be better.   Bye bye iTunes!!
    Incidentally, I tried several other things that (if the software was designed intuitively) should work, but give disastrous results:
    1) when deleting the library listing in iTunes, it gives you two options - one is to remove the listings to the Recycler.  Be aware that IF you select that option, it removes not only your library listing, but also your ACTUAL MUSIC FILES to the Recycler.  Moreover, it does NOT remove the insidious secret meta-file that is what apparently keeps rewriting old names over your carefully renamed file names, and keeps totally ignoring your carefully designed folder (album) structure.  OK - not a complete disaster, as I realised and went hunting through the chaos in the Recycler to recover all my files.  No thanks to the genius who designed this brilliant feature!
    2) after deleting the library listing in iTunes, I attempted to import just the folders that I wanted.  iTunes refused to allow me to do that, and proceeded to try to import every frigging music file it could find on my whole hard drive, in apparently random fashion into the library.  Whoever thought up that doozy either never ever tried to use or market test it, or has modified their mind rather too many times with artificial substances so their brain is like muesli chop suey.
    3) oh why go on, it's too depressing ...

  • I have an ipod touch 2 and rebuilt my laptop.  Reinstalled ITUNES and can't find my applications on ITunes after login.  I tried to activate Itunes again but it didn't.  How can I get my applications to display on ITUNEs?

    I have an Ipod Touch 2 and rebuilt my laptop.  Reinstalled ITUNES and can't find my applications on ITunes after login.  I tried to activate Itunes again but it didn't.  How can I get my applications to display on ITUNEs?

    It sounds like you essentially have a new computer and unless you restored from a backup your iTunes library would be empty.  You can transfer your iTunes purchases from your iPod to the computer by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    SInce you changed syncing computers. after you move the stuff you need to restore the iPod to factory defaults and sync the stuff back to your iPod.  If you had the iPod backup file you could restore from backup.
    If you have non-iTunes pruchases you can copy them to your computer by using one of the third-party programs discussed in this previous discussion:
    Best iPod to PC

Maybe you are looking for

  • Business Area Wise open PO report

    Dear Experts, Our user need the Business Area wise open PO report  if there any standard report so please let me know. waiting fast response. Regards Aamir

  • Word wrap last space to be blank

    hi prestnl in a notepad file output of report the word wrap is being done at positon 225 as the last field county is of three char but the valurs indatabase is two so the word wrp is done on position 225 we need to display a blank space after "MY' in

  • Using external subroutine

    my subroutine is written in one program. I m using it in another program. i checked with the breakpoint... The control goes to the subroutine fetches the data in the structure but when the control returns to the main program the structure is empty. N

  • Global Variable translated to different characters

    We recently upgraded BODS from 4.2 SP1 to 4.2 SP4. Now we are facing issues in those DataFlows where are used Hierarchy Flattering functions, that Global Variables are wrongly translated from text to weird Asian characters. E.g. varchar variable: 'ab

  • Cannot change download folder on pc

    I cannot change the download and upload folders thru "icloud on my pc"