Affiliate Marketing
Forum Search

Reply
 
LinkBack Thread Tools Display Modes

  #1 (permalink)  
Old 15-08-08
Registered User
 
Join Date: Jul 2008
Location: at home
Posts: 87
Thanks: 6
Thanked 0 Times in 0 Posts
EmmaFlower is an unknown quantity at this point
  Browser compatability help!

I have just recently taught myself xhtml/html and have built a site, while i was building it it looked fine viewing it in my browser. I have now got some hosting and put it live, the alignment in firefox is a little off which i can easily fix (i hope) however in IE it is all totally wrong.

I have searched the net for any kind of straightforward solution however their isn't anything in clear simple english to guide me through this. My main problem here is I have taught myself and don't know anyone as such to advise me or take a look at my coding.

Can anyone help as i am now tearing my hair out!

Thank you

Emma

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 15-08-08
Registered User
 
Join Date: May 2008
Posts: 97
Thanks: 7
Thanked 4 Times in 4 Posts
voucherz is an unknown quantity at this point
  Re: Browser compatability help!

Have you got a URL where we can see the site/problem?

Should be easily fixed
__________________
www.voucherz.co.uk - Voucher Codes | www.suedeapple.co.uk | My Blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 15-08-08
Registered User
 
Join Date: Jul 2008
Location: at home
Posts: 87
Thanks: 6
Thanked 0 Times in 0 Posts
EmmaFlower is an unknown quantity at this point
  Re: Browser compatability help!

I should probably note that the problem seems to be the top menu so might be something in the style sheet perhaps?

the url is Football on the tv, I haven't added all the pages yet so just the front page is viewable but it does seem to just be the menu that is the problem,

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 15-08-08
Registered User
 
Join Date: Oct 2007
Posts: 466
Thanks: 1
Thanked 7 Times in 6 Posts
philhancox is an unknown quantity at this point
  Re: Browser compatability help!

Just a small thing: iframes are not a good idea and were killed off about 10 years ago... It could be a nice site if you got rid of the iframes
__________________
Discount Codes
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 15-08-08
Registered User
 
Join Date: Jul 2008
Location: at home
Posts: 87
Thanks: 6
Thanked 0 Times in 0 Posts
EmmaFlower is an unknown quantity at this point
  Re: Browser compatability help!

lol well the 'book' taught me about frames so I thought it was a good idea. So should I just loose the frames all together? do you think that is why the menu is looking weird?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 15-08-08
Registered User
 
Join Date: May 2008
Posts: 97
Thanks: 7
Thanked 4 Times in 4 Posts
voucherz is an unknown quantity at this point
  Re: Browser compatability help!

Howdy!

Had a peep at your code, errrrr... quite a few errors in it. Sorreee!!

For a great cross browser menu system check out this tutorial. CSS Express Pure CSS Drop-Down and Popup Menus by PVII

Check out voucherz.co.uk, voucher codes, discount codes, special offers, sales and you'll see how im using the nav system in my site

Yep, FRAMES are BAD!! - They are being deprecated in HTML 5, so if you design a site with frames, then youre wasting your time to be honest.
__________________
www.voucherz.co.uk - Voucher Codes | www.suedeapple.co.uk | My Blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to voucherz For This Useful Post:
EmmaFlower (15-08-08)
  #7 (permalink)  
Old 15-08-08
Registered User
 
Join Date: Oct 2007
Posts: 466
Thanks: 1
Thanked 7 Times in 6 Posts
philhancox is an unknown quantity at this point
  Re: Browser compatability help!

What book

Your top banner is pushed to the right because you have
Code:
left: 200px
applied to it. If you want it in the centre, replace it with
Code:
margin: 0 auto;
.

Yes, with all due respect I think it would be infinitely better if you remove your iframes and try again. tizag.com is a cracking resource for beginner friendly HTML tutorials (amongst other languages) and there are a lot of HTML gurus on here
__________________
Discount Codes
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 15-08-08
Registered User
 
Join Date: Jul 2008
Location: at home
Posts: 87
Thanks: 6
Thanked 0 Times in 0 Posts
EmmaFlower is an unknown quantity at this point
  Re: Browser compatability help!

ok thank you

I'll check out that tutorial,

...and loose the frames lol

I have only been doing this for 2 weeks, literally, so appreciate any feedback.

Also, I saw on W3 that you can check your code is that right?

Emma
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 15-08-08
Registered User
 
Join Date: Oct 2007
Posts: 466
Thanks: 1
Thanked 7 Times in 6 Posts
philhancox is an unknown quantity at this point
  Re: Browser compatability help!

Quote:
Originally Posted by voucherz View Post
Check out voucherz.co.uk, voucher codes, discount codes, special offers, sales and you'll see how im using the nav system in my site
Off-topic - that's in a sub domain, I thought it looked different and it looks very clean, very nice ! Is it a sneak preview of a redesign to the normal voucherz site?
__________________
Discount Codes
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 15-08-08
Registered User
 
Join Date: Jun 2007
Posts: 220
Thanks: 8
Thanked 3 Times in 2 Posts
ChristopherB is an unknown quantity at this point
  Re: Browser compatability help!

In some of your markup below, this is what IE is seeing. What you'd expect is a UL tag to be closed by a closing UL tag. Infact we can see two open ul tags which are followed below by 4 ul closing tags, so you have two extra there.

Same with the closing li tags, two extra i can see.

I cant' look at your css file cause it's compacted but your using absolute positioning for everything which leaves very little room for expanding content ect.. What's the book called?

Make a backup before changing incase im wrong. But firefox can oversee the issue because you've set the padding and margins of the UL to 0 but ie will still count the ul's.


HTML Code:
<ul>

  <li><h2>When to Watch</h2>
    <ul>
      <li><a href="footballgamesonsky.htm" title="">Live Football on Sky</a></li>
      <li><a href="footballgamesonsetanta.htm" title="">Live Football on Setanta</a></li>
        		
           
            </ul>
          </li>
        </ul>

      </li>
    </ul>
  </li>
</ul>

<ul>
  <li><h2>Where to Watch</h2>
    <ul>
      <li><a href="footballonskytv.htm" title="">Football on Sky</a></li>

      <li><a href="footballonsetanta.htm"title="">Football on Setanta</a></li>
      <li><a href="footballonvirgin.htm" title="">Football on Virgin Media</a></li>
              <li><a href="footballontiscali.htm" title="">Football on Tiscali</a></li>			
              <li><a href="footballonbtvision.htm" title="">Football on BT Vision</a></li>
              			
              <li><a href="footballonhdtv.htm" title="">Football on HDTV</a></li>
            </ul>
          </li>

        </ul>
      </li>
    </ul>
  </li>
</ul>			
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to ChristopherB For This Useful Post:
EmmaFlower (15-08-08)
  #11 (permalink)  
Old 15-08-08
Registered User
 
Join Date: Jul 2008
Location: at home
Posts: 87
Thanks: 6
Thanked 0 Times in 0 Posts
EmmaFlower is an unknown quantity at this point
  Re: Browser compatability help!

Quote:
Originally Posted by philhancox View Post
What book

Your top banner is pushed to the right because you have
Code:
left: 200px
applied to it. If you want it in the centre, replace it with
Code:
margin: 0 auto;
.

Yes, with all due respect I think it would be infinitely better if you remove your iframes and try again. tizag.com is a cracking resource for beginner friendly HTML tutorials (amongst other languages) and there are a lot of HTML gurus on here
lol oh just some book I picked up!

Ok thats great I shall take a look at that and get back down to it,

thanks for the help

Emma
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati