• Hello!!

    This question may seem rudimentary! But, I want to know how a full-width post can be enabled in this theme.

    I am talking about something like this on the home page:
    https://flamiingomedia.co.za/

    Like, different backgrounds for each post and display them completely on the site, without any background as such.

    Is there any option that I am missing on the free theme? or, is it an option in the premium version. Please let me know.

    And, another question is if I could change the backgrounds for every page individually in the free theme?

    Thanks in advance ??

    My site link: https://assessmentclinic.uic.edu/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey,

    The link you posted to a site using pagebuilder to place content in the page with a full width background. That content isn’t a post. It’s added into pagebuilder. So you can do that but the theme doesn’t have an option to show posts in this way. Posts are output in a loop through wordpress and you can’t show them all differently on the same page.

    With the premium theme you can change the header background for each page but that isn’t a built in option with the free theme.

    Kadence Themes

    Thread Starter Anirudh

    (@anirudh1502)

    Hello

    Thanks for your response. I’ve installed the Page Builder plugin to get the feel that I wanted. But, I have few concerns over here.

    Re-posting my site address: https://assessmentclinic.uic.edu/

    1. There’s a white space between the topbar and the Page builder content.

    2. And the size of this white space increases when I change the resolution to a tablet mode, I mean a screen resolution between the mobile and Desktop. In this scenario, the top bar menu content is coming over into that white space.

    I figured out that this has to do something with the “kad-header” class itself. But, I wasn’t able to understand how to remove that white space.

    Could you please help me out with this issue.

    Thanks in advance ??

    1. You can add this:

    .kad-header-left, .kad-header-right {
        min-height: 0;
    }

    2. Yeah you’re using the topbar as the header… add this css:

    .kad-topbar-left {
        width: 70%;
        float: left;
    }
    .kad-topbar-right {
        width: 30%;
        float: left;
    }
    @media (min-width: 768px){
    .kad-topbar-left {
        width: 30%;
        float: left;
    }
    .kad-topbar-right {
        width: 70%;
        float: left;
    }
    }

    Kadence Themes

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Backgrounds for posts and pages’ is closed to new replies.