• Excellent theme, really a good job, congratulations! I have some portfolio pages(which in i have an image slider) and some text pages. My question is, how can i remove the logo, social icons and just show the image slider in a full width in portfolio pages, and in the others (text pages), I just show the regular page, with the logo and social icons?

    my site is denisclaros.com.br

    thanks in advance!

    Denis

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello Denis,
    Try adding the following code to custom css-

    body:not(.blog) .site-branding {
    display: none;
    }
    body:not(.blog) #social-icons {
    display: none;
    }
    
    body:bot(.blog) #page {
    width: 100%;
    }

    This should make all your content full width.

    Thread Starter denisfc

    (@denisfc)

    Ok, thank you so much Divjot! It worked great to remove logo!

    To set the page in full width i added this to main.css:442 “width:95%”.

    Its possible to show just some pages with this full width style (portfolio pages) and the other pages (“serviços”, “sobre” and “contato”) showing the native styles?

    thanks again!

    Denis

    Hello Denis,
    Try adding the following code to custom css in Appearance > Customizer > Custom CSS-

    body:not(.blog).page-id-10 .site-branding, body:not(.blog).parent-page-id-10 .site-branding {
    display: none;
    }
    body:not(.blog).page-id-10 .site-branding, body:not(.blog).parent-page-id-10 .site-branding {
    display: none;
    }
    
    body:not(.blog).page-id-10 #social-icons, body:not(.blog).parent-page-id-10 #social-icons {
    display: none;
    }
    
    body:not(.blog).page-id-10 #page, body:not(.blog).parent-page-id-10 #page {
    width: 100%;
    }

    It should solve your issue…

    Divjot

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

The topic ‘Remove logo from some pages’ is closed to new replies.