• A really nice theme, I liked it. I like mostly the menu on the left side.

    I need to remove the page title and image from the left side and make the page full,
    how could I do that. I know there is no selections for this, but would you kindly provide me with a CSS code to do this?

    Thanks,

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Rigorous Themes

    (@wpgaint)

    Hello,
    Go to Apperance >Customize > Additonal Css and add following css

    #myfullpage > .section .custom-col-8 {
            width: 100%;
            padding-left: 100px;
        }
        #myfullpage > .section .custom-col-4 {
            display: none;
        }
        #myfullpage > .section::before {
            display: none;
        }
    
        @media only screen and (max-width: 767px) {
        #myfullpage > .section .custom-col-8 {
            padding-left: 40px;
        }
    
        }
    
        @media only screen and (max-width: 479px) {
        #myfullpage > .section .custom-col-8 {
            padding-left: 20px;
        }
    
        }

    Thank You

    Thread Starter SolutionsDEV

    (@solutionsdev)

    Hi @wpgaint,

    Thanks for your answer, this is so cool, but will need some amendment.

    1- All of them are removed except for the “home”.
    2- There still some layer coving the area at left with transparency.
    3- Some of them does not seem to be a full page, I need them a full page in order to use the whole space.
    4- The menu scroll bar shows over the page on smaller sizes like tab and mobile.

    I hope you can help me with these.

    Thanks,

    Theme Author Rigorous Themes

    (@wpgaint)

    Hello @solutionsdev

    Please send your website url so that we can check it.
    For quick and prompt reply, please contact us at [email protected]

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Header’ is closed to new replies.