I'm trying to edit the .css stylesheet to put a little space between each line item, so my lists aren't quite so crowded together. I've added to the stylesheet.cs the following:
li {padding: 4px}
which should work, but now when i try to view the page, the tab header is all wonky... it looks like the stylesheet says: #tabHeader li { ... } and when i add my line for the li items, there seems to be some conflict. Is there any way i can add my <li> element without it conflicting with the #tabHeader li element?
I don't know too much about .css files, so this is all pretty new to me... any help would be greatly appreciated.
li {padding: 4px}
which should work, but now when i try to view the page, the tab header is all wonky... it looks like the stylesheet says: #tabHeader li { ... } and when i add my line for the li items, there seems to be some conflict. Is there any way i can add my <li> element without it conflicting with the #tabHeader li element?
I don't know too much about .css files, so this is all pretty new to me... any help would be greatly appreciated.
Comment