Home Forums Pro Themes Signify Pro sidebar + theme styles

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #149355
    Sergei
    Participant

    Hello.
    1. How to remove sidebar and make full width in category, store, product (woocommerce) section?

    2. How to make links not underlined ?

    3. How to remove the captions 1) and 2) in the screenshot and the empty space 3)?

    screenshot

    #149417
    Psink
    Keymaster

    To deactivate sidebar

    Go to Admin panel >> appearance >> customize >> theme options >> layout options – there you will find options to deactivate sidebar

    To remove captions please add this css in additional css

    
    .woocommerce .woocommerce-breadcrumb,
    .woocommerce .woocommerce-shorting-wrapper{
    	display:none;
    }
    
    @media only screen and (min-width: 64em){
    	.site-content>.wrapper {
    	    padding: 40px 30px;
    	}
    }
    
    

    To remove underlines in link please add this css

    
    .entry-content a:not(.more-link):not(.button):not(.fa):not(.remove):not(.wp-playlist-caption), .entry-summary a:not(.more-link):not(.button):not(.fa):not(.remove):not(.wp-playlist-caption), .ew-about a:not(.more-link):not(.button):not(.fa):not(.remove):not(.wp-playlist-caption), .widget_text a:not(.more-link):not(.button):not(.fa):not(.remove):not(.wp-playlist-caption) {
        text-decoration: none;
    }
    

    Regards,

    #149420
    Sergei
    Participant

    Thank you very much, as always everything works.
    There is one more question left. How to remove huge side margins in categories, products?

    screenshot

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.