• I need help. I want to hide numbering in sidebar widget. I want to remove only numbers and i inpect the style but the issue is how to do that. I go to style.css file and there is availabe my code which i want to remove I don’t know how to do that how to remove that specific style.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • In WP backend go to Appearance -> Customise -> Additional CSS
    & paste this.
    It will do the same to your recents comments widget as well if you use it.

    
    .widget_recent_entries li::before, 
    .widget_recent_comments li::before {
    	display: none;
    }
    
    .widget_recent_entries li, .widget_recent_comments li {
        padding-left: 9%;
        padding-right: 9%;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Removing element on specific style’ is closed to new replies.