Hey guys, I'll be posting a few questions in this forum when I get a chance. Here's my problem
I'm trying to use a few more-advanced CSS properties to style some of the code on my site. Some of them are not working.
Here is the first problem. Code, and example
<h2>Online Webmaster Utility</h2>
<p>
Text is here
<ul>
<li>secure directories</li>
<li>configure web page counters</li>
<li>view web traffic statistics</li>
</ul>
(there are, of course, closing tags and whatnot)
and css
h2 p ul {
margin: 14px 0 14px 30px;
}the unordered list is not styling. its under h2 and under p, and I expected it to style
I've added a separate class to that css and applied it directly to the unordered list in that code and it works fine, yet when I try to do the css that way it doesn't work. I have also tried making a class (eg: set class to .ul and then made the css h2 .ul ul and .ul ul...still didn't work)
what am I doing wrong?
more to come after lunch
Aqua-Soft Forums