Right now I don`t have a style at all I think
How to get a style for example like this;
http://plugins.jquery.com/project/jquerylightbox_bal
the links in the left sidebar.
Are there any styles to copy. I serached but could not find any
This style will only affect the lists and not text widgets?
Site url? Help is free but psychic costs extra. :-)
You mean in the right (aka the other "left") sidebar? There are loads of classes in there that you could hook your styling onto. Do you use Firefox? If so, try installing the Firebug add-on. It makes this kind of task so much easier.
I`ve done somthing now
added a hover, but why isn`t the entire line changing colour?
What I`d really like is a dotted line between each link.
Must that be a background image?
#sidebar li {
background:url(img/icons.gif) 0 -560px no-repeat;
background-color: #e0e0e0;
padding-left:22px;
list-style:none;
font-size:12px;
margin-top:5px;
/*font-size:95%;*/
}
#sidebar li a:hover{
background-color: #ccc;
list-style:none;
font-size:12px;
margin-top:5px;
/*font-size:95%;*/
}
Anyone.
I have the entire link line to change colour when hover.
Right now it`s just the text.
Also
A random list on a page. Is it possible to make that like a table with 2 different colours for each line?
Change:
#sidebar a {
color:#690000;
text-decoration:none;
}
to
#sidebar a {
color:#690000;
display:block;
text-decoration:none;
}
in style.css
A random list on a page. Is it possible to make that like a table with 2 different colours for each line?
Sorry? I don't understand.