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 - 3,081 through 3,100 (of 5,356 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: Vertical Menu

    #98304

    Hey David,
    You can do this using the custom menu widget. From Theme Options > Misc Settings you can create custom sidebars, then from Appearance > Widgets you can add a custom menu widget to your sidebar. Then you can enable the sidebar from your the backend of your pages.
    Hope that’s helpful!

    Hannah

    In forum: Virtue Theme

    Topic: Vertical Menu

    #98292

    Hi Ben and Hannah,

    I´m looking for simple solution for a vertical menu in the virtue theme (which i can use as a sidebar) a . Alternative it could be a plugin…

    Here is the url for the menu, which looks like that

    Do you an idea to do this?
    Thanks a lot,
    David

    In forum: Virtue Theme

    In reply to: Page issues

    #98279

    1. It could be you have a plugin that is conflicting. Try deacitvating your plugins to test. Let me know if there’s no change.

    2. Looks like you have a sidebar enabled on your post pages, but no sidebar selected. In Theme Options > Blog Options you can set Blog Post Sidebar Default to No, Do Not Show. This can also be overridden on each post edit page.

    3. This css should work:

    .comment {
        color: #fff;
    }

    Hannah

    #98231

    Hey,

    1. Your issue is that your adding a fullwidth stretched to a page that has a sidebar. Page builder can’t do that just make sure to use the “fullwidth” page template. see here: http://docs.kadencethemes.com/virtue-premium/fullwidth-page-template/

    2. Because you are using a shrinking header the widget area isn’t an option for you. You would need to add an iamge with both your logo and site title that way it could properly shrink as well.

    3. You can also use this css which will bring your items closer together:

    .kad-header-style-three #nav-main ul.sf-menu>li>a {
        padding: 0 10px;
    }

    Ben

    #98217

    You can just remove the sidebar class and it would effect any place you add the button. So use this css instead:

    input[type="submit"] {
        background: #333;
        color: #fff;
        border: 0;
        padding: 10px;
    }

    Hannah

    #98196

    Hi Hannah,

    thanks for the suggestion. I had no specific style in mind but the change you suggested is good. I edited the colors and borders and I’ll keep it like that.

    Would you know how I can edit the one on the home page (not in the sidebar)?

    Thanks,
    Corentin

    #98192

    Hey,
    Not really sure what kind of look you’re wanting, but you can style with this css:

    .sidebar input[type="submit"] {
        background: #333;
        color: #fff;
        border: 0;
        padding: 10px;
    }

    Just paste that into your custom css box in Theme Options > Advanced Settings.

    Hannah

    #98187

    Hi,

    the subscribe button from the Jetpack plugin is rather ugly… I am not sure if this is something I need to change in the Virtue theme configuration or through Jetpack?

    Could anyone direct me to the right place?

    For an example of the button I am trying to change, please look at:

    either on the sidebar menu or further below next to the “Latest Posts” widget.

    Thanks,
    Corentin

    #98159

    Appearance > widgets. look in the sidebar widget area that you have assigned to the product.

    Ben

    #98035

    Hey Jennifer,
    The sidebar is going to automatically start at the top. One option here would be to use the Feature page template. This will allow you to set the slider above the page content and title. Then you could add your blog posts through a shortcode like this: [kad_blog orderby=date items=4 fullpost=false]
    Or if you wanted to use the blog template you could choose not to show a sidebar and use pagebuilder to create a column on the right side that has the same effect as a sidebar.
    Hope that’s helpful!

    Hannah

    #98004

    Good evening,

    The sidebar on my blog page is over running my rev slider image. Would it be possible to move the content of the sidebar down below the image? My site is

    Thank you!

    Kindest regards,

    Jennifer

    #97989

    Hey,
    You can make a link using the custom link option in your menu. Just use your domain as the link and make the label home.

    You can add that shortcode into a sidebar.

    You can edit each category and set a custom header.

    Ben

    #97985

    Hello Ben,

    I would like to request assistance with two issues on our website ( ).

    1. I have been trying to disable the primary sidebar (Instagram/Twitter Feed) on mobile devices and the following code is not working:


    @media
    (max-width: 768px){
    #ktsidebar {display: none;}
    }

    Please let me know if there is CSS that I can use to accomplish this.

    2. I would like to add social media icons to the main menu on the homepage but I have been unable to do so. Do you have any recommendations for how I can use the social icons on the main menu?

    Thank you for your time and assistance,

    Ben and Alison

    #97973

    Also, there is no slider (header graphic) on the category pages (from the sidebar).

    #97972

    As for breadcrumbs, can they be displayed on category (from the sidebar) and blog pages?
    As an alternative, how can I add the home page to the menu (it doesn’t show up in the menu item list when creating a new menu)?

    In forum: Virtue Theme

    In reply to: Popover link

    #97866

    1. You can add this:

    .sidebar button.kad-btn.kad-btn-primary.kt-modal-btn {
    overflow: hidden;
    text-indent: -9999px;
    }

    2. You can use a plugin like this: https://wordpress.org/plugins/loco-translate/

    Ben

    #97861

    It’s not possible unless you were to code it out yourself.

    Adding a sidebar to type pages will require a child theme. You will need to add a function into the functions.php file of the child theme.

    function kad_sidebar_portfolio_type($sidebar) {
      if (is_tax( 'portfolio-type' )) {
        return true;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_portfolio_type');

    Ben

    In forum: Pinnacle Theme

    In reply to: Sidebar layout

    #97859

    ok, you can add this css:

    .sidebar .select2-container .select2-choice {
        border-radius: 0;
        font-size: 12px;
        height: 20px;
    }
    .sidebar  .select2-container .select2-choice>.select2-chosen {
        line-height: 18px;
    }
    .sidebar  .select2-container .select2-choice .select2-arrow b:after {
        line-height: 20px;
    }
    .select2-results .select2-result-label {
        font-size: 12px;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Popover link

    #97853

    Hello Hannah!

    Thanks. That helps (look in sidebar – first picture) … but

    1. How to remove Click Here?

    2. How to translate Close?

    Best regards.

    R.

    In forum: Pinnacle Theme

    In reply to: Sidebar layout

    #97849

    What I’m thinking about for the sidebar are square corners and a shorter height (20px) on the sidebar dropdown boxes and a 12 – 14px font. If it’s not relatively easy to access and change, I’m ok with leaving the sidebar as is, however.

Viewing 20 results - 3,081 through 3,100 (of 5,356 total)