Is there any way to get rid of the big blue stars in front of each widgett title in the sidebar.
Also, on a static page, is there a way to not dsiplay the title name at the top left of each page. (but keep the link in the navbar)
I am using the Mandigo theme at http://www.crestviewmarketing.com
Thanks!
In your style.css look for this line
.sidebars li {
list-style-image: url(schemes/blue/images/star.gif);
margin: 0 0 15px 25px;
}
You need to change it. You can change the URL to a different image or change it similar to this for nothing
.sidebars li {
list-style-type: none;
margin: 0 0 15px 25px;
}
open your themes style.css scroll down on line 498
find
.sidebars li {
list-style-image: url(schemes/blue/images/star.gif);
margin: 0 0 15px 25px;
}
replace with
.sidebars li{list-style: none outside none;margin: 0pt 0pt 15px 25px}
Thanks to both of you. It worked perfectly.