Bullet Points for IE7

Soldato
Joined
12 Jan 2006
Posts
5,610
Location
UK
Hi all

Just working finishing some things on a site called www.armaghmarble.com. I have an issues with the small bullet points on the nav wont show up in IE7, but work fine using firefox.

Does anyone have any ideas how to fix this? I can post code etc if you need it.
 
The easiest way around it would be to use images instead of the bullets, so you don't have to do wacky IE workarounds in CSS.
 
Also i have a problem with the hovers.

If i hover over a link the text changes to blue which works fine. But if i click on a link i want it to stay a different colour so its tell the user where they are. But if i click a different link the already visited one changes back to white.
 
Pretty sure you can't use CSS to show which page you are on. Usually on the next page I set something like body id="aboutus" and then in my css I have something like:

body#aboutus a.aboutus
{
color:blue;
}
 
Easiest way to show a user what page they are on via navigation is to add a class "selected" to navigation item they are on.

So:
Code:
<ul id="Navigation">
   <li id="Home" class="selected">Home</li>
   <li id="AboutUs">About Us</li>
</ul>
Then in CSS just style the .selected to a certain colour you want :)
 
This might sound obvious but have you tried giving the li item in your CSS the list-style-type property value 'circle'

i.e

li {list-style-type:circle;}

I checked your CSS and can't see anything relating to the li entities
 
This might sound obvious but have you tried giving the li item in your CSS the list-style-type property value 'circle'

i.e

li {list-style-type:circle;}

I checked your CSS and can't see anything relating to the li entities

Will give this a go now.

Thanks for the help all.
 
you sure mate? mine only works if I put the style on the li item :)

Yes, I'm very much sure.

http://www.w3schools.com/Css/pr_list-style.asp

Once again, mess with margin and padding. I reset them on all ul, ol and li elements. and then go from there.
This is what I use in my default.css.

Code:
ul, ol { margin: 0 0 0 20px; padding: 0; list-style: disc;}
ul li, ol li { padding: 0 0 0 10px; margin: 0;}
 
Last edited:
Back
Top Bottom