Assassinate that miserable bullet-points!
Version: 11.1
Revision: 43.1 Build 11
Assassinate that miserable bullet-points!
Introduction: When I was maintaining my website, one of my friend had a small complaint about his WordPress – sidebar. The problems is, his blog has ‘bullet – points’ all over the place! So, he tried to disable it, but failed miserably without success.
After his trouble, he phoned me if I can disable these horrible ‘bullet – points’ from appearing beside his sidebar. Guess what? I disabled it without wasting my time! It took me only 3 minutes to login, navigate to his directory and modify his CSS Stylesheet.
That is all – No big deal!
———————-
1.] Login to your Cpanel and navigate to your WordPress Theme folder.
Normal directory: /public_html/wp-content/themes/*theme folder/
Root directory: /public_html/blog/wp-content/themes/*theme folder/
2.] Look inside your costume – theme folder and find your “CSS Stylesheet.”
After that, just look for a tag that control your wp-sidebar. Here is an example…
/* sidebar */
#sidebar {
float:right;
width:318px;
}
.widget { margin-bottom:8px; }
.widget-title {
background:#E8E8E8 url(images/widget-title-bg.gif) no-repeat 0 0;
font:normal 12px 'Trebuchet MS', Tahoma, Verdana;
color:#2C2C2C;
height:27px;
line-height:27px;
margin-bottom:5px;
padding:0 6px;
}
3.] Now, you’ll need to paste the following codes into your CSS sidebar.
After that, just save your settings and check your Blog.
list-style: none;
- This is the modified example…
/* sidebar */
#sidebar {
list-style:none;
float:right;
width:318px;
}
.widget { margin-bottom:8px; }
.widget-title {
background:#E8E8E8 url(images/widget-title-bg.gif) no-repeat 0 0;
font:normal 12px 'Trebuchet MS', Tahoma, Verdana;
color:#2C2C2C;
height:27px;
line-height:27px;
margin-bottom:5px;
padding:0 6px;
}
4.] Keep a backup of your modified – CSS Stylesheet and relax!
Copyrighted By Lair360


