• Resolved CindyOTSEO

    (@cindyotseo)


    I really love your theme! Very well thought out with a lot of functionality not available in other themes.

    I am using the sidebar option on all pages including the home page. I would like the homepage and the feature-sidebar page sliders to be only 75% of page width with the sidebar all the way to the top of the page (next to the slider) – Similar to the layout of the blog posts when using a slider. You can see examples of what I mean here:

    home page
    blog post
    sidebar-feature page

    On pages, I’d also like to be able to either remove the page title, or make it span only 75% of page, so sidebar can go to top of page.

    If upgrading to premium will resolve these issues, I will gladly upgrade. If not, can you help me out?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Upgrading won’t resolve the issue exactly.

    starting with the home page and feature page sidebars. I would recommend just using a slider plugin and adding your slider in the page content area and not using the theme to place right below your header. There isn’t any easy or sensible way to change where the sliders area added through those templates to is best just to add the slider in the content then your sidebar will be next to it. The only thing the premium theme offers here is some bundled slider options for adding a slider in the page content.

    The page title is similar but it’s a consistent enough size that you can get way with some tricky css, try adding this in your theme options > advanced settings:

    @media (min-width: 992px){
        .page-header {
             width: 66.66666667%
        }
         aside.kad-sidebar {
            margin-top: -108px;
        }
    }
    @media (min-width: 1200px){
        .page-header {
            width: 75%;
        }
        aside.kad-sidebar {
            margin-top: -108px;
        }
    }

    Kadence Themes

    Thread Starter CindyOTSEO

    (@cindyotseo)

    Thank you for your quick response!

    Thread Starter CindyOTSEO

    (@cindyotseo)

    Is there a clean way to just remove the page title from all pages?

    .page-header {
           display:none;
        }

    Kadence Themes

    Thread Starter CindyOTSEO

    (@cindyotseo)

    Thank you!!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Resize slider when using sidebar option’ is closed to new replies.