Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #88378
    Anidos
    Participant

    I wanna show the right sidebar only on my Homepage. Can you please tell me how to do it?

    #88402
    Mahesh
    Keymaster

    @anidos: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .sidebar.sidebar-primary {
        display: none;
    }
    
    .home .sidebar.sidebar-primary {
        display: block;
    }
    
    #main {
        width: 100%;
    }
    
    .home #main {
        width: 820px;
    }
    @media screen and (max-width: 1280px) {
        .home #main {
        	width: 720px;
        }
    }
    @media screen and (max-width: 1152px) {
        .home #main {
        	width: 680px;
        }
    }
    @media screen and (max-width: 1100px) {
        .home #main {
            width: 600px;
        }
    }
    @media screen and (max-width: 990px) {
        .home #main {
            width: 100%;    
        }
    }
    #88435
    Anidos
    Participant

    Great! It works!! Thanks for quick reply.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Sidebar only on a Homepage’ is closed to new replies.