Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'sidebar'

Home / Forums / Search / Search Results for 'sidebar'

Viewing 20 results - 2,521 through 2,540 (of 5,356 total)
  • Author
    Search Results
  • #128740

    Hello,

    I’m using Contact Form 7 for my site on an individual subpage. I would now like to have this contact form to be displayed on sidebar of another subpage. Should I use somekind of additional plugin for this purpose (if so, what would you recommend?) Or is there another way around this issue?

    Thanks in advance

    Regards,
    Jari

    #128681

    Did you set your sidebar to be on the left? The sidebar is on the search page, looks like yours might be empty.

    Ben

    #128618

    You can hook on “kt_before_secondary_navigation”

    so

    add_action('kt_before_secondary_navigation', 'my_custom_after_header_widget_area');
    function my_custom_after_header_widget_area() {
    dynamic_sidebar( 'sidebar2' );
    }

    Ben

    In forum: Virtue Theme

    In reply to: Product Variation

    #128581

    Hey Charles,

    Can you post a link to the site so that I can take a look at how you’ve got your sidebar configured?

    Thanks,
    Kevin

    #128531

    I do not quite understand you.
    Builder page can not make such a combination in a row – from left: a line from one column, below – the line of the 3 columns below – the line of one column and on the right: the sidebar. Nested lines therein are not supported.
    Besides, if I do the same sidebar on separate pages, its support will be difficult.
    Maybe I did not understand you?
    Fullwidth context below the sidebar could be done by adding something like a separate footer page. Or, perhaps by other means, as in the example here.
    Maybe you can help in this regard?

    #128493

    In order to do this, you would need to change the way the theme is built.

    one easy workaround would be to use page builder in order to emulate a sidebar on the page in question.

    You would just have to set up page builder rows to display as your page content and sidebar would.

    If you’re unfamiliar with the use of page builder, I suggest taking a look at this tutorial:
    https://www.kadencewp.com/using-page-builder/

    Does this make sense? Let me know if you need any further assistance.

    -Kevin

    #128487

    How to make a page at the top of the side panel and the bottom of the full width (as in the example).
    Example

    #128483

    hi again,

    After switching to an product category site i saw that the sidebar shows after the secondary nav.
    Is there also an hook to show it before the secondary nav instead ?

    greets

    #128433
    add_action('kt_afterheader', 'my_custom_after_header_widget_area');
    function my_custom_after_header_widget_area() {
    dynamic_sidebar( 'sidebar2' );
    }

    You would need to add a function like above to your functions.php child theme.

    Ben

    #128422

    Hi,

    How can i add a custom sidebar after the header of virtue theme ?
    I did create a custom sidebar under misc settings -> create sidebars

    Now i want to add it after the header like you can see in the screenshot:

    Any ideas how i can do this ?

    #128411

    Yes, that’s how I did it. Here is a screenshot of what I pasted in the FHP file: http://www.traceyreneehubbard.com/screenshot_011317_013547_pm/

    The main problems seem to be that the sidebar (which should just be on the blog page) appears on every page and overlaps the header/content. Another issue is that the homepage widgets appear in the footer on every page across the site and they do not appear on the homepage where they should be. Here are some screenshots:

    Sidebar appears on every page and overlaps with header: http://www.traceyreneehubbard.com/screenshot_011317_014145_pm/
    Homepage widgets in footer on every page & not displaying correctly on homepage: http://www.traceyreneehubbard.com/screenshot_011317_014305_pm/

    #128288

    Thanks for the reply Ben, but that code didn’t make the changes I’m looking for. I’m wanting to stretch the top menu so the items go from the left edge of the content boxes to the right end of the sidebar. Basically, fill the width of the site. Right now they’re two lines kinda squished in the center, Not awful but I’m curious if you can widen the menu items.

    #128270

    One quick question pertaining to the menu. Is the width limited? Or can I stretch it out to match the width of the box and sidebar?

    #128241

    Hey,
    I took a look at the plugin, it’s editing the wrapping css so it’s not using theme styles. You can kind of force it to work with some css like this:

     body.single.single-docs .content-area #main {
        width: 100%;
        margin: 0 auto;
        padding:0 15px;
    }
    @media (min-width: 768px) {
    body.single.single-docs .content-area #main {
        width: 750px;
    }
    }
    @media (min-width: 992px) {
    body.single.single-docs .content-area #main {
        width: 970px;
    }
    }
    @media (min-width: 1200px) {
    body.single.single-docs .content-area #main {
        width: 1170px;
    }
    }
    body.single.single-docs #ktsidebar {
    display:none;
    }

    Else for full support of styles and having a sidebar you would need to use a child theme to edit there plugin templates.

    I didn’t have any trouble with tabs? can you post a link to this?

    Ben

    In forum: Virtue Theme

    In reply to: CSS Help

    #128086

    Hi Hannah,

    I was trying to align the collective group of filters on the portfolio page, not the items in the sidebar.

    In forum: Virtue Theme

    In reply to: CSS Help

    #128085

    1.

    #filters li h5.selected, #filters li h5:hover {
    color: #999;
    }

    2.

    .sidebar h3 {
        text-align: center;
    }

    Hannah

    #128076

    Could be that a plugin doesn’t work with minify or that you had minified and moved a script into the footer that another script loading in the sidebar or else where on the page needed to function. I would suggest turning on minify, then start by removing one plugin at a time.

    Ben

    In forum: Virtue Theme

    In reply to: CSS Help

    #128073

    Hi,
    1.

    #filters li h5 {
        font-family: sans-serif;
    }

    2.

    .sidebar h3 {
        font-family: sans-serif;
    }

    Hope that helps!
    Hannah

    #128072

    Hey Tracey,
    Looks like your title is being added as par to the page content. You can add this to your custom css box in Theme Options > Advanced Settings:

    @media (min-width: 992px) {
    aside#ktsidebar {
        margin-top: 270px;
    }
    }

    Does that work for you?

    Hannah

    In forum: Virtue Theme

    Topic: CSS Help

    #128070

    Hi,

    I’d like to make some CSS changes to my website, would you please help me identify the correct divs/elements for the changes?

    Changing the font (style) of the portfolio filters here: http://www.traceyreneehubbard.com/projects
    Changing the font (style) of the widget titles [i.e. SEARCH, CATEGORIES, etc.] in the sidebar profiles here: http://www.traceyreneehubbard.com/blog

    Thanks for your help.

Viewing 20 results - 2,521 through 2,540 (of 5,356 total)