• Resolved novocan

    (@novocan)


    Hello,

    I am an experienced web developer but I have zero experience with PHP. I was hoping you can help me remove the side bar on some pages or all the pages in the WP HeadR theme.

    I am also struggling to find the location to change the green like theme color and the red when you highlight a link in the banner?

    Also is there a way to make the header show on a mobile device?

    Your response is appreciated.

Viewing 1 replies (of 1 total)
  • Theme Author Brian Harris

    (@zgani)

    Hello novocan,

    Thank you for your queries.

    I was hoping you can help me remove the side bar on some pages or all the pages in the WP HeadR theme.

    This can be achieved by creating a child theme, copy over the page.php and rename it to full-width.php – then proceed to remove the call to the sidebar.

    Here’s a gist showing how the final code should look like: WP HeadeR Full Width Template

    I am also struggling to find the location to change the green like theme color and the red when you highlight a link in the banner?

    You will need to make these changes in your shild theme’s style.css. All of the header banner CSS can be found in the headr.css file located in the css folder – simply copy to your style.css the rules you need to change and make your edits.

    Also is there a way to make the header show on a mobile device?

    Add the following CSS rule to your child theme’s style.css..

    @media screen and (max-width: 380px) {
        .st-container {
    	    display: block;
    	}
    }

    however, you’ll need to make some css adjustents to the rules in the headr.css code for better display.

    Hope that helps direct you in the right direction.

    Regards,
    Zulf

Viewing 1 replies (of 1 total)
  • The topic ‘Sidebar & Color changes’ is closed to new replies.