Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

CSS Forum


You are currently viewing our CSS Forum as a guest. Please register to participate.
Login



Reply
Old 06-10-2007, 04:24 PM IE Problem with CSS?
Average Talker

Posts: 19
Trades: 0
Hello Guys,

Can someone please help me with this little problem I am having? If you go to this website using IE. You can see that above the navigation I get a blue line which I can't fix with IE. All the other browsers are working great. Can anyone help me with this problem?

www.petzonesarnia.com


thanks for any type of help
GraphicArmy is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-12-2007, 07:30 AM Re: IE Problem with CSS?
HighVoltage123's Avatar
Ultra Talker

Posts: 263
Trades: 0
you might try adding border="0"
Code:
 <div id="header_bg">
<img src="asset/image/site/images/Petzone_top_leftcorner.gif" alt="background top bar" width="10" height="55" border="0"/>
<a href="index.php">
<img src="asset/image/site/images/Petzone_05.gif" alt="background top bar" width="123" height="55" border="0" />
</a><img src="asset/image/site/images/Petzone_06.gif" alt="white space" width="336" height="55" border="0"/>
<img src="asset/image/site/images/Petzone_top_puppie_02.gif" alt="Puppie image" name="Puppie_image" width="254" height="150" id="Puppie_image" border="0"/>
<img src="asset/image/site/images/Petzone_07.gif" alt="background top bar" width="47" height="55" border="0"/>
</div>
this code is generated right or you wrote it?

Last edited by HighVoltage123; 06-12-2007 at 07:31 AM..
HighVoltage123 is offline
Reply With Quote
View Public Profile Visit HighVoltage123's homepage!
 
Old 06-12-2007, 04:44 PM Re: IE Problem with CSS?
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
Except it's not a border issue and even if it were, that type of thing should be done in the CSS.

I would make the following suggestions;
- On the home page you've included the css file for 2col_leftNav as well as 3 other stylesheets. I suspect you're getting conflicting styles there. In fact, when I comment out the petzone.css link, that blue "line" disappears. The blue showing thru is the background of your page thru a gap.

- The top bar, the one you call #header_bg - don't slice it that way, you're not slicing images for tables. You can easily make that top section 1 single graphic.

- I'm not sure what you're doing with CSS like this:
Quote:
#superwrap #wrapper #contact_wrap #contact_content {
padding: 20px;
}
If your aim is to apply that padding to all of those divs, then the elements must be separated by commas. If you're pyramiding just to target the last element, it's not necessary and you're making things more difficult for yourself.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 06-12-2007, 09:41 PM Re: IE Problem with CSS?
Average Talker

Posts: 19
Trades: 0
Thank you for your help. I will report back to you.

Later on today.
GraphicArmy is offline
Reply With Quote
View Public Profile
 
Old 06-15-2007, 08:33 PM Re: IE Problem with CSS?
Average Talker

Posts: 19
Trades: 0
LadyRed, thank you for your help. The blue background line is gone now. But how do you know how to fix that problem. I mean how do you know how to solute the trouble? I would like to be a better designer.

Thanks for your help again.


p.s. maybe you can help me with this IE Problem the navigation, when you scale the browser window its muss up.
GraphicArmy is offline
Reply With Quote
View Public Profile
 
Old 06-15-2007, 09:57 PM Re: IE Problem with CSS?
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
Well, debugging IE problems just takes practice. The resource I gave you, Positioniseverything.net is a great resource. You could also try css-discuss.org, all the CSS gurus are on that list and they are always there to help - and explain. Their WIKI is a gold mine.

I also use 2 extensions for Firefox that help a LOT - the Web Developer extension and Firebug, I can't do without them any more.

I'll take a look at your navigation and see if I can spot the problem.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 06-16-2007, 01:54 AM Re: IE Problem with CSS?
Average Talker

Posts: 19
Trades: 0
Wow LadynRed, I know about the FireBug plugin but the Web Developer extension is great too. I can see why you can't do without those two plugins.

Thanks again for your time and energy helping a rookie like myself with IE problems.

Many thanks again!!
GraphicArmy is offline
Reply With Quote
View Public Profile
 
Old 06-16-2007, 11:51 AM Re: IE Problem with CSS?
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
I looked at your navigation. It appears that the code on that nav bar is set to position: absolute, and that will cause the problem you are having. All the styles for that menu is pretty complicated, there are simpler solutions out there that are pure CSS (or nearly so) that would be a lot cleaner.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 06-16-2007, 05:41 PM Re: IE Problem with CSS?
Average Talker

Posts: 19
Trades: 0
LadynRed,

What do you mean? I have try to change the css code for 3 hours and still can't fix the problem.

thanks again
GraphicArmy is offline
Reply With Quote
View Public Profile
 
Old 06-16-2007, 09:36 PM Re: IE Problem with CSS?
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
Let me put it this way ... dump the Spry menu bar, you don't need it, you can create virtually the same menu w/o javascript and all that excessive css.
Here's just one example - NO javascript:
http://www.cssplay.co.uk/menus/basic_dd.html

If anyone happens to have javascript turned off, they would not be able to navigate your site.

I can't really debug it because I have no idea what's going on in the scripting. There are several places where parts of the menu are positioned (absolute or relative) and the stacked classes and Id's are a nightmare to untangle... sorry.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to IE Problem with CSS?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.30812 seconds with 12 queries