I have a lot of issues with Internet Explorer 6,7 not mentioning 5 ;) I'll put code+images to show problem:
1.- Internet Explorer 6: - Main Navigation is messed up, it's a sprite image: Here is the code http://pastie.org/509697 and is based on the Sprite2 technics by AListApart, I've tried with conditionals but I don't know what it causes the problem.
- Navigation 2 is missing: This is a float problem, why if I floated to the left and positioned absolute isn't show, here's the code I've used
.feed { float: right; position: absolute; top: 15px; right: 102px; } .feed UL LI { display: inline; }
Instead have move that div above ul.nav.current in your HTML markup
"ipad" said:
2.- Internet Explorer 7:
- The search box is messed up too
Yea, that's a really wack way of positioning your search box. Simplify it by creating putting a div around it and positioning that div to the right. Then you can position the inputs/buttons inside that div seperately.
"ipad" said:
- The navigation 2 (feed/rss) isn't float to the right, is showing to the left instead.
See my note above
"ipad" said:
Here is the example link http://themeforest.webtipsmagazine.com/gs/
Thanks.-
Doh... Please put the link at the top next time ;)
1.- Internet Explorer 6:
- Main Navigation is messed up, it's a sprite image: Here is the code http://pastie.org/509697 and is based on the Sprite2 technics by AListApart, I've tried with conditionals but I don't know what it causes the problem.
- Navigation 2 is missing:
This is a float problem, why if I floated to the left and positioned absolute isn't show, here's the code I've used
A picture is worth a thousand words
http://webtipsmagazine.com/examples/IE6.jpg
2.- Internet Explorer 7:
- The search box is messed up too: here is the code i've used http://pastie.org/509709
- The navigation 2 (feed/rss) isn't float to the right, is showing to the left instead.
http://webtipsmagazine.com/examples/IE7.jpg
3. Google Chrome is perfect :D
http://webtipsmagazine.com/examples/chrome.jpg
3. Firefox is perfect :D
http://webtipsmagazine.com/examples/firefox.jpg
Here is the example link
http://themeforest.webtipsmagazine.com/gs/
Thanks.-
Try making this selector grab all anchors (instead of a:link and a:visited only) and I'd keep it all lowercase:
Give the .feed a width so that it can't be 100% wide
Also this (bolded) is not a good idea:
.feed {float:right;
[b]margin:-37px [/b]55px 0 0;
}
Instead have move that div above ul.nav.current in your HTML markup
Yea, that's a really wack way of positioning your search box. Simplify it by creating putting a div around it and positioning that div to the right. Then you can position the inputs/buttons inside that div seperately.
See my note above
Doh... Please put the link at the top next time ;)