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 'widget area'

Home / Forums / Search / Search Results for 'widget area'

Viewing 20 results - 621 through 640 (of 2,437 total)
  • Author
    Search Results
  • #209161

    Hello,

    There isn’t really any way to change that to a carousel. The best method would be to go to theme Options> Home Layout, and make sure you enable the home widget area.

    Then navigate to Appearance> Widgets and add a Virtue: carousel widget to your home widget area.

    Assign it to display the posts that you want and save.

    Let me know if that works for you.

    -Kevin

    #207717

    This will hide the area on your home page in mobile:

    @media (max-width: 992px) {
    #panel-7-2-0-0> .panel-widget-style {
        display: none;
        }
    }

    For the footer, it might be best to configure it in page builder if you’re wanting to change it in mobile. There isn’t much you can do by default aside from hiding some elements with CSS.

    What pages have a sidebar? You should be able to hide it with this CSS:

    @media (max-width: 992px) {
    .sidebar {
    display: none;
        }
    }

    -Kevin

    In forum: Virtue Theme
    #207370

    OK I remade the form and that now displays the captcha. However the math is there. The form is inside a Visual Editor in the Home Widget area. Is there a way to set the preference for no math? (If not, I think I’ll just ditch the form. It’s not that important.)

    #207355

    I’ve added the Kadence Recaptcha plugin, and it is working on all the forms on my site, EXCEPT the Kadence testimonial form that is installed in the home widget area of my home page:

    What it is?

    #207301

    Hi Kevin,

    That’s what I had done before: “recreate that excellent portfolio carousel in a different way with a Pinnacle widget, but I tried that and it came out all goofy.”

    The portfolio widget does not get the same output as the “Portfolio Carousel” area in Home Layout. How can I recreate that look?
    I also want to put the names of the links in the center, instead of “View Details”. Is that possible with this?

    Thank you,

    Luke

    #207227

    So you can paste the javascript into your footer output in Theme Options > Header and Footer Scripts (if you don’t see this option make sure it has been enabled from Theme Options > Theme Extensions). Then you can paste the html into a text widget in your topbar widget area. I just tested this on my site and it worked great. Let me know if you have further questions setting this up!

    Hannah

    In forum: Virtue Theme
    #207221

    Hey Leif,
    The Virtue Image Menu Item widgets would get you a similar look. Then you could use css to style it more closely to what you’re wanting. You can add this through the homepage layout manager, or through any widget area.
    Hope that’s helpful!

    Hannah

    #207204

    Hi Pam,
    If you’re enabling the Latest Blog Posts in the homepage layout manager you can only set the number of columns to one or two. If your homepage is set as the latest posts page from Settings > Reading then you can set “Use Post Grid Format” to “On” from Theme Options > Home Layout > Page Content Options. Then you’ll see an option to set the number of columns (up to four). Or you can always add a shortcode into your home content area or a text widget within the home widget area. A shortcode like this should work for you: [blog_grid orderby=date items=8 columns=4]
    You can see a full list of shortcodes here: http://docs.kadencethemes.com/virtue-premium/shortcodes/
    Hope that’s helpful!

    Hannah

    #207165

    Hey,

    Another option would be to enable the home widget area and then add the contact to that. You can enable the home widget area in Theme Options> Home Layout, then add the content in Appearance> Widgets.

    Does that work for you?

    -Kevin

    #206969

    Hi Kadence,

    Loving kadence themes!

    I have a question to add some space between the Header extra’s widget area and the second header extra’s widget. (Between the Youtube social link button and a Siteoriging call to action button, see header on )

    Hope you can help!

    Thanks in advance!

    Martin

    #206963
    This reply has been marked as private.
    #206754

    1.

    #home-custom-carousel .custom_carousel_item {
        box-shadow:none;
    }

    That css would remove the lines. To make that area fullwidth you would have to add within the content in pagebuilder using a fullwidth row and not through the theme options.

    2. If you are going to use hte home widget area use the layout builder widget in pagebuilder and make the row fullwidth.

    Ben

    #206610

    Hey Michel,
    The Virtue carousel widget is meant to show existing posts/products. If you’re wanting a custom slider I would suggest creating a kadence slider, then adding the kadence slider shortcode to a text widget in your header widget area. Would that work for you?

    Hannah

    In forum: Ascend Theme

    In reply to: Add shop now button

    #206603

    Hey Frank,
    You can enable the home widget area below your product carousel from Theme Options > Home Layout. Then navigate to Appearance > Widgets and add an ascend infobox widget to the home widget area. Would this work for you?

    Hannah

    #206595

    How should I do? I work with Virtue Premium 4.8.5 and this is my site:

    To add a slider inside the header widget area I tried to select the Virtue: Carousel widget but then I don’t understand how I can select the images that I want to show with the slider (or the Carousel).
    I see that I can select a Carousel Type but don’t know either which type I should select in order to be able to specify the images that I want to show.
    Thanks for you help
    Michel

    #206547

    Hello,

    Here’s some CSS that will allow you to customize the search:

    li.menu-widget-area-kt input.search-field, li.menu-widget-area-kt form.search-form .search-submit {
    color:white;
    background: black;
    }
    li.menu-widget-area-kt input.search-field::-webkit-input-placeholder{
    color: white;
    }
    li.menu-widget-area-kt input.search-field::-moz-placeholder {
    color: white;
    }
    li.menu-widget-area-kt input.search-field:-ms-input-placeholder {
    color: white;
    }

    Add to Theme Options> Custom CSS, and let me know if it works for you.

    -Kevin

    #206289

    Hi Nicky,
    You can use css like the following to customize the placement:

    .headerclass, .mobile-headerclass, .kt-mainnavsticky .sticky-wrapper.is-sticky #nav-main {
        background: url(http://www.exelcouriers.co.uk/wp-content/uploads/2018/11/ezgif.com-optimize.gif) no-repeat 25% 100%;
    }

    Or you can use the header widget area. This can be enabled from Theme Options > Main Settings > Logo Options. Then you can add a widget from Appearance > Widgets.
    Hope that’s helpful!

    Hannah

    #206272

    Glad to hear it!
    You can reduce the padding and font size of your menu items with this css:

    .kad-header-style-basic .kad-primary-nav ul.sf-menu>li>a {
        padding: 0 5px;
    }
    .is-sticky .kad-primary-nav ul.sf-menu a, ul.sf-menu a, .none-trans-header .kad-primary-nav ul.sf-menu a {
        font-size: 14px;
    }

    As for the phone number, Pinnacle theme doesn’t have a buit-in function for this. But you could add the number to a widget area in your topbar then use css to adjust it as you’re wanting. Would that work for you?

    Hannah

    #206263

    Hi Ben:

    I granted support access.

    I placed shortcode into the Home Extras Widget Area via a text widget. Shows blank.

    Thank you for the help,
    Loren

    #206210

    Hi Ben:

    I did try adding a slider using shortcode and text widget. Nothing appeared. Using the Ascend Carousel or Ascend Gallery widgets did not work for me either. I am stuck for a method to set a slider into the Home Extras Widget Area for you to review. What method, tool, or widget would you use?

    sctacommunications.com

    Thank you,
    Loren

Viewing 20 results - 621 through 640 (of 2,437 total)