Hey peoples,
Does anyone know where to look in the code to get rid of those little bullet point cirles that come up next to each widget in the sidebar.
Getting in the way of my adsense, and, well, just a bit useless and ugly, really...
Thanks!
Hey peoples,
Does anyone know where to look in the code to get rid of those little bullet point cirles that come up next to each widget in the sidebar.
Getting in the way of my adsense, and, well, just a bit useless and ugly, really...
Thanks!
Look for the sidebar part stylesheet and make the list-style "none".
Thanks Gangleri, got rid of the circles no problem. But still having some problems with the alignment. Any ideas how to reduce the space between the border and the edge of the widgets on the left? So many entries in the stylesheet about sidebar margins that I don't know where to start...
In the file themes/mandigo/style.css.php, look for the following block (line 708 in the 1.36.2 version of the theme):
.sidebars ul li, .sidebars ol li {
margin: 3px 0 0 0;
}
Change that last number to -5px, so it looks like "margin: 3px 0 0 -5px;" and the entries will shift left towards the sidebar border.
Hope that's what you're looking for.
Uh, it seems to have shifted the entire sidebar, I'm trying to minimise the small margin within the sidebar between the border and the content. (aligned it well though, so that's a plus).
However it only seems to work on entry pages. My first page just got completely out of whack when I put up a couple of posts. Wierdly can't be pin-pointed to any one post, becuase they all align up well on their dedicated pages. Gargh
Just a bit of extra info-
The main bar where the posts show up gets widened by a couple of centimetres on my main page, but not on post pages. Ah.. maybe I need to start a new topic..?
What's the URL of the site?
hey karolinap...
I am having the same problem you had. Thanks to this thread I was able to remove the bullets really simply but now I would like to make the best of that extra space as well and shift things over.
did you manage to figure it out?
if so, please let me know
thanks
here is the simplest instructions for removing the bullets
http://wiki.onehertz.com/WordPress/Mandigo/FAQ/How_do_I_make_sidebars_disappear_on_a_particular_page
.sidebars ul li, .sidebars ol li {
margin: 3px 0 0 0;
list-style-type:none;
}
add this list-style-type:none; as shown above.. it worked for me
This topic has been closed to new replies.