Support » Themes and Templates » [Theme: Autopress] Problem editing right sidebar bullet list

  • Hi!
    it’s been a while that i’m trying to edit the bullet list in the right sidebar of my site, but i can’t find the source in Style.css.
    I would like to change the list-style-type, because the actual marker is an unicode symbol not supported by Firefox, and replace it with a simple “disc” marker.

    I’ve tried to add:

    #content .widget li ul{
    list-style-type: disc !important;
    }

    but nothing happened!
    Can anyone help?

    My site is http://www.ensolar.it/ and i’m using theme Autopress

Viewing 2 replies - 1 through 2 (of 2 total)
  • I think you should add following code to style.css

    #content .sidebar .widget ul li {
        list-style: disc inside none;
    }
    
    .widget_recent_entries ul li:before {
        content: "" !important;
    }
    
    Thread Starter shruikan89

    (@shruikan89)

    thank you very much! it worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Autopress] Problem editing right sidebar bullet list’ is closed to new replies.