Ok I have a few questions about CSS and DIVS
Question 1)
Whats the difference between:
div class="blah"
&
div id="blah"
Question 2)
I am working on a skin for Seditio ( a cms thing) and I have this in the CSS file:
Then in the main .tpl file have this:
so why is the text not coming out white?
Question 1)
Whats the difference between:
div class="blah"
&
div id="blah"
Question 2)
I am working on a skin for Seditio ( a cms thing) and I have this in the CSS file:
Code:
div#newsly {text-transform: uppercase;}
div#newsly h2 {color: #FFFFFF;}
Then in the main .tpl file have this:
Code:
<div class="newsly">
<h2><a href="{PAGE_ROW_URL_IDX}">{PAGE_ROW_SHORTTITLE}</a></h2>
</div>
so why is the text not coming out white?