• Resolved kimcheng

    (@kimcheng)


    Hello, I’ve a website:
    as I don’t know much about the additional css code, but I’ve searched online and try, I could just hide the sidebar on homepage but could not have the Full Width of homepage.

    .page-id-4210?#sidebar?{
    display: none;

    }

    Could someone just help provide the “additional css code” to hide the sidebar on homepage and with the full width?

    The Sidebar could be kept in other pages, but I just don’t want it on homepage.

    Thanks for helping. ??

    The blog I need help with is:

    • This topic was modified 1 year ago by James Huff. Reason: redundant links removed

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Rathod Ashish

    (@ashish121)

    @kimcheng, you can check with the below CSS.

    @media screen and (min-width: 1000px)
    {
    .page-id-4210 .site-main {
    width: 100%;
    }
    }

    @media screen and (max-width: 999px) and (min-width: 720px)
    {
    .page-id-4210 .site-main {
    width: 100%;
    }

    }

    Thread Starter kimcheng

    (@kimcheng)

    @rathod Ashish

    Thanks for helping, it’s really works !!!

    I’ve tried to check online for a long time, but could not find any solution

    You’re amazing !!

    Thanks so much ! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing Sidebar on Homepage with Full Width’ is closed to new replies.