Recent Topics

1 May 27, 2008 11:41    

My b2evolution Version: Not Entered

In front of a title of each widget in the sidebar there is a small bullet or image. How can i change this ? Or in what file is the link to this image ?

2 May 27, 2008 12:26

Howdy...
What skin are you using?
Do you have a link to your site?

3 May 27, 2008 13:39

evocamp that might be. if so,

open up your style.css

and remove the line :

background:url(img/zekebullet.gif) 0 5px no-repeat;

in the

#sidebar ul li ul li {

and the

#midcontent ul li ul li {

which i mean like;

#midcontent ul li ul li {
list-style-type:none;
padding-left:15px;
margin:0;
background:url(img/zekebullet.gif) 0 5px no-repeat;
}

replace this with

#midcontent ul li ul li {
list-style-type:none;
padding-left:15px;
margin:0;
}

repeat the same for the #sidebar, cheers.

4 May 27, 2008 19:54

I have the same problem as TBoele. I did change some things in the style.css like tilqicom said but that doesn't fix the problem.

Look : www.jeroendekock.com

How can i remove the bullets before each title in my sidebar ?

5 May 27, 2008 19:56

ul li { /*style.css (line 159)*/
list-style-type:square;
margin:0px 0px 6px;
padding:0px;
}

delete "list-style-type:square" ;)

¥

6 May 27, 2008 20:02

¥åßßå wrote:

ul li { /*style.css (line 159)*/
list-style-type:square;
margin:0px 0px 6px;
padding:0px;
}

delete "list-style-type:square" ;)

¥

I deleted it but that doesn't help.

7 May 27, 2008 20:05

ack, I'm having a blonde moment .... hmmm, that'd be all my moments, replace the line with :

list-style:none;

¥

8 May 27, 2008 20:37

add

#leftsidebar ul{list-style-type: none;}

9 May 27, 2008 20:53

tilqicom wrote:

add

#leftsidebar ul{list-style-type: none;}

Finally it's gone. That was the problem.


Form is loading...