Submit Your Article Webforumz RegistrationAnnouncements Contact Webforumz StaffContact
Home Resources Blogs Meet the Team Contact Register
 

Go Back   WebForumz.com > The Code > HTML, XHTML and CSS

Closed Thread
 
LinkBack Thread Tools
Old July 3rd, 2007, 10:22 AM   #1
New Member
 

Join Date: Jul 2007
Location: MA
Age: 29
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 bluetech is on a distinguished road
CSS issue in IE7

My webpage fixaflick.com looks great in FF, but in IE7 it is missing the main image, navigation, plain messed up. Can someone look at my code. Thanks
bluetech is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old July 3rd, 2007, 10:27 AM   #2
Reputable Member
 

Join Date: Jun 2007
Location: Bellevue, SK, Canada
Age: 30
Posts: 222
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 delusion is on a distinguished road
Re: CSS issue in IE7

Quote:
Originally Posted by bluetech View Post
My webpage fixaflick.com looks great in FF, but in IE7 it is missing the main image, navigation, plain messed up. Can someone look at my code. Thanks
Maybe IE can't handle the CSS-error you've made..

Check this:
http://jigsaw.w3.org/css-validator/v...usermedium=all
delusion is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old July 3rd, 2007, 11:04 AM   #3
New Member
 

Join Date: Jul 2007
Location: MA
Age: 29
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 bluetech is on a distinguished road
Re: CSS issue in IE7

Thanks not sure how to read those errors. 68 #header2 h3 Value Error : font Lexical error at line 67, column 23. Encountered: "\n" (10), after : "\"Verdana;"font-weight: normal; 80
Value Error : font Parse Error - : absolute; left:22px; top: 44px; color: black; padding: 0 0 0 0.7em; margin: -1em 0 0 0; line-height: 1; } #nav-top
bluetech is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old July 3rd, 2007, 11:14 AM   #4
Reputable Member
 

Join Date: Jun 2007
Location: Bellevue, SK, Canada
Age: 30
Posts: 222
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 delusion is on a distinguished road
Re: CSS issue in IE7

Quote:
Originally Posted by bluetech View Post
Thanks not sure how to read those errors. 68 #header2 h3 Value Error : font Lexical error at line 67, column 23. Encountered: "\n" (10), after : "\"Verdana;"font-weight: normal; 80
Value Error : font Parse Error - : absolute; left:22px; top: 44px; color: black; padding: 0 0 0 0.7em; margin: -1em 0 0 0; line-height: 1; } #nav-top
ah, you've used the quotations.. (you know " " those..)
try removing those.. ?
delusion is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old July 3rd, 2007, 11:32 AM   #5
Elite Veteran
 

Join Date: Sep 2006
Location: Pink House
Posts: 3,941
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 Lchad is a name known to all Lchad is a name known to all Lchad is a name known to all Lchad is a name known to all Lchad is a name known to all Lchad is a name known to all
Re: CSS issue in IE7

Darn I posted the solution but it didn't post.
RETRY:

You have an error in your css which is not allowing the rest of your css to work. Fix this:
Code:
#header2, h3 {
    position: absolute;
    left:22px;
    top: 44px;
    color: black;
    padding: 0 0 0 0.7em;
    margin: -1em 0 0 0;
    font: normal 13px/1 Verdana, Arial, Helvetica, sans-serif;
}
You also have a closing div missing.. it's in red below:

Code:
<body> <div id="wrapper">

    <div id="header">
      <h1>FiXaFlick</h1>
      
  <div id="header2">
    <h3>DVD Slideshow Presentations</h3>
     
      
      <div id="nav">
        <ul>
          <li class="home"><a href="http://www.fixaflick.com">Home</a></li>

          <li><a href="http://www.   ">About Us</a></li>
          <li><a href="http://www.   ">Services</a></li>
          <li><a href="http://www. ">Prices</a></li>

          <li><a href="http://www.">Portfolio</a></li>
          <li><a href="http://www. ">How To Order</a></li>
           
          <li><a href="http://www. ">Contact Us</a></li>

        </ul>
      </div>
    </div>
    </div>
    
    <div class="clear" id="footc"> </div>
    <div id="footer">
      Copyright 2007 All rights reserved by Chris Chagnon
    </div>

  </div>
Also you need to sort out why strawberry.jpg is a background image in #nav. It should be in a div id or div class since it's a body element.

That css at the top of the page is messed up too.
You can't have #header2, h3 which is what you have.
Either use h2, h3 or if you need a div id for #header2, you can't have h3 with it.
Lchad is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old July 3rd, 2007, 11:34 AM   #6
Most Reputable Member
 

Join Date: May 2006
Location: North West, UK
Age: 23
Posts: 1,170
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 pa007 has a spectacular aura about pa007 has a spectacular aura about
Re: CSS issue in IE7

This has been double posted. You have already replied to this in the other thread over in the html forum.

Could you merge them or just close this.

Pete.
pa007 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Old July 3rd, 2007, 11:36 AM   #7
Elite Veteran
 

Join Date: Sep 2006
Location: Pink House
Posts: 3,941
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 Lchad is a name known to all Lchad is a name known to all Lchad is a name known to all Lchad is a name known to all Lchad is a name known to all Lchad is a name known to all
Re: CSS issue in IE7

Ohhhhhhhhh that's what happened..thanks Pete!
Thread Closed. Please to go thread in HTML forum!
Lchad is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread

Bookmarks

Tags
display , ie7 , image


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
JS issue acrikey JavaScript 6 July 25th, 2007 01:45 PM
Issue in IE6 aholmes HTML, XHTML and CSS 7 July 13th, 2007 06:00 AM
css issue acrikey HTML, XHTML and CSS 4 May 24th, 2007 12:01 PM
Help Odd Issue? drappendix HTML, XHTML and CSS 8 August 9th, 2006 01:53 PM
IE issue Pheonix HTML, XHTML and CSS 2 December 2nd, 2005 05:58 PM


Search Engine Optimization by vBSEO 3.2.0 RC8