Viewing 7 replies - 1 through 7 (of 7 total)
  • 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/

    Thread Starter cahill90

    (@cahill90)

    I want only to know what css code I’ve to modify to delete that bullet

    QXARE

    (@qxare)

    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.

    Thread Starter cahill90

    (@cahill90)

    Yes, this is the link of the page with problem

    http://www.studentiunict.it/universita/

    QXARE

    (@qxare)

    .entry-content .widget {
      list-style: none;
      margin-left: 0;
    }

    should do the trick.

    Thread Starter cahill90

    (@cahill90)

    Do i have to put that code on the end of style.css file?

    QXARE

    (@qxare)

    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.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Remove bullet and margin from widget title’ is closed to new replies.