Moderator
t-p
(@t-p)
There are many tools available for this kind of CSS work, for example:
– Firefox with Firebug add-on: Help info on Firebug https://getfirebug.com/faq/
– Newer IE/Chrome, etc., have similar tools
– Alternately, try a dedicated CSS resource such as http://www.css-discuss.org/
– Also, consider creating a child theme otherwise all your customization will be overwritten when you next update your theme. Alternately, use Custom CSS Manager plugin: http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/
I want only to know what css code I’ve to modify to delete that bullet
Could you give us a link to your site? Otherwise it’s hard to say, but try to apply list-style: none; to the list ul that wrapps the widgets and a
margin-bottom:0;
to the inner lis.
Yes, this is the link of the page with problem
http://www.studentiunict.it/universita/
.entry-content .widget {
list-style: none;
margin-left: 0;
}
should do the trick.
Do i have to put that code on the end of style.css file?
Best way is to create a child theme as @tara listed before. Then you can put the styles into there so you don’t lose anything when you have to update the main theme – or you just add them to your current theme style.css.