Widget Style
- Started
- Last post
- 5 Responses
- Atkinson
that's not a sex thing.
How do I make CSS for : <li id="pages" class="widget widget_pageexample like I would with a div -
#div_name a:link {
}
- airey0
can you upload some code? what you written doesn't make much sense?
- Stugoo0
if your referencing the class do
li.widget { <css> }
and
li.widget_page { <css> }or if your referencing the id you can do.
#pages { <css> }
or
li#pages { <css> }is that what you want to know?
- Atkinson0
yes i think thats it, thanks Stugoo - what if it's all in a ul?
- Atkinson0
here's the code from 'vie page source' - it's a wordpress widget so that's the only way of getting the code in this style...
</div>
<div id="menu">
<ul>
<ul>
<li id="pages" class="widget widget_pages"> <h2 class="widgettitle"> </h2>
<ul>
- Atkinson0
excuse my lack of knowledge here but would it be something like:
#menu ul ul li .pages a:link{ etc etc etc
just seems a long way in?