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 '

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

Viewing 20 results - 1,241 through 1,260 (of 13,419 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    Topic: Banner

    #249258

    Hi there.
    Is it possible to activate a widget section in the banner.
    Regards, Paul

    #249195

    Hey Luis,
    Pinnacle doens’t have an option for a header widget area, but you can add social links to your menu by adding custom menu items (Appearance > Widgets). Then adding icons to your menu. See here: https://www.kadencewp.com/knowledge-base/add-icons-to-menu/
    Then if you want only the icons to show and to remove the text you can do so with css. Let me know if you would like help with this!

    Hannah

    #249193

    Hello all,

    I have the premium Virtue theme using classic editor. I have a couple of rows using the info box widget and my issue is just making each one consistent.

    I have 7 items, so 4 on top and 3 below. As you can see the top row – first two titles show below the icon. That would be fine if the icon and titles could be centered on each line. Then the next two, HVAC and LP Systems are showing next to the icon instead of their own line. I have not changed any setting from the first two! The second row – all titles are to the side of the icon.

    Each icon box has a chosen icon, title, icon size of 46 and I chose square for the icon style, but they all look different. Some titles are below and some to the side – even with the same amount of letters in the title.

    Have I done something wrong? I need all of them to be consistent – probably easiest would be icon centered above the titles.

    Thank you!

    In forum: Pinnacle Theme

    In reply to: sidebar 1

    #249190

    Sidebar1 should be displaying as a widget area in Appearance > Widgets. You can also create new custom sidebars from Theme Options > Misc Settings that will then appear in your widget area. Is this not the case for you?

    Hannah

    #249174

    Hi team! is possible to add social icons to main menú in header? trough a widget in header for example?

    THANKS!

    In forum: Pinnacle Theme

    Topic: sidebar 1

    #249151

    Hi,

    there is sidebar1 available to choose in Blog Category/Archive Defaults. But I can’t find any sidebar1 in Apperance>Widgets. Could you please explain me if sidebar1 exists in Pinnacle or no?

    #249149

    Hey Ben,

    If I need to have a menu with columns in Kadence Theme, which would be compatible? Quadmenu, Max megamenu or another one?

    I’m still looking for font settings for site content (paragraph text) and also for the footer widgets.

    In Astra you have Text color like this:
    astra-colors

    Sorry if I’m being blind! 🙂

    #249132

    When using Amazon Pay as a payment method, the custom Elementor Checkout page does NOT show the address book widget and the wallet widget for the customer to select, as a “normal” woocommerce checkout page would…

    They are these divs

    #amazon_addressbook_widget div, #amazon_wallet_widget div

    I’ve tried the below but it didnt work. Does Elementor Checkout widgets not allow for these widgets?

    #amazon_addressbook_widget div, #amazon_wallet_widget div {
    display: block
    }

    Thanks

    In forum: Virtue Theme

    In reply to: Front page assistance

    #249116

    1. Just to clarify, you are wanting to edit “Categories” and “Primary Nav”.

    You are adding a border color for hover on a element that has no border, that is why it’s not working, if you add:

    #containerfooter .menu li a {
        border:1px solid transparent
    }

    Then the border color would have an effect on hover.

    I see the hover color working, you have it set in your css to be the same color as the non-hover color.

    If you have something specific you want me to help with I can send you custom css.

    2. I’m not sure how adding a menu widget relates to SiteOrigin page builder in the footer. Because those two are so so different I’m worried there might be some misunderstanding.

    However, as Hannah said you can use SiteOrigin page builder in your footer by going to appearance > widgets and adding a widget called “Layout Builder” into one of your Footer widget areas. Once you add that widget into one of those footer widget areas you can edit that widget and it will give you access to the Siteorigin page builder. Does that make sense?

    Ben

    In forum: Virtue Theme

    In reply to: Front page assistance

    #249106

    Hannah,

    Thank you so much for this detailed response. Some things fixed immediately, others not yet.

    1. How do I make the menu items in the footer boxes come together? This is not the footernav. because it is not the footer menu. Rather it is the Appearance>menu where I’ve placed Navigation widgets and pointed towards menus. I’m having trouble gaining control over the css via the #containerfooter css that you recommended. Here is what I have now. Some features like the hover color and border don’t work.

    #containerfooter h3 {
    font-size: 20px;
    line-height: 22px;
    color: #003a6d;
    font-family: sans-serif;
    }

    #containerfooter .menu {
    margin-left: 0;
    border-left: 1px solid #003a6d;
    }
    #containerfooter .menu li a {
    color: #003a6d;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    background: transparent;
    }

    #containerfooter .menu li a:hover {
    color: #003a6d;
    border-color: #003a6d;
    text-decoration: none;
    background: transparent;
    transition: .3s;
    }

    2. Please explain in one more sentence how to use SiteOrigin page builder to get into designing my footer space. You wrote: “Yes, you can do that using the Layout Builder widget from Siteorigin.”
    So far, I’ve tried the two methods that I know of, and neither has worked: Appearance>widget and insert a menu widget. This results in the titles of the menu pages that are inserted into the widget. The other method is building a separate menu, labeling it “footer”, then from Appearance>Menu directing wordpress to place that named “Footer” menu in the footer area.
    Both of these strategies have proved difficult to work with in terms of the css, and adding content that can be easily formatted. What if I want to write a full sentence, how do I do it?

    Thank you!!

    In forum: Virtue Theme

    In reply to: Front page assistance

    #249103

    Hey John,
    There’s definitely a huge learning curve with all this. You’ll get there!
    1. This will specify the background for your footer menu:

    .footernav ul li a:hover {
        background: #fff;
    }

    2. This css will align your subcategor menu items:

    #containerfooter ul {
        padding-left: 0;
    }

    3. You can adjust your footer widget titles with this css:

    #containerfooter h3 {
        font-size: 20px;
        line-height: 22px;
        color: blue;
        font-family: sans-serif;
    }

    4. I’m actually seeing it aligned right. Are you wanting it centered?

    5. This will center align you footer and move the credits below

    .footercredits {
        margin: auto;
        display: table;
    }
    .footernav {
        float: none;
        width: 100%;
    }
    .footercredits p {
        float: right;
    }

    6. Yes, you can do that using the Layout Builder widget from Siteorigin.

    Hannah

    In forum: Virtue Theme

    In reply to: Front page assistance

    #249096

    What would be ideal is to get into the footer space as if it were a Page. I would add four columns, put a SiteOrigin page builder widget in each, and write and format and link whatever text I want, the way that I want it. Is this possible?

    In forum: Virtue Theme

    In reply to: SiteOrigin Tabs

    #249079

    Hey Doug,
    To my knowledge there is not an option for this within the siteorigin tabs widget, only in siteorigin premium. If you wanted to use the Block Editor you could use the Tabs block from Kadence Blocks. There are tab anchor settings built into the block.
    Let me know if I can help further!

    Hannah

    #249044

    Hi Ben,

    A couple of weeks could work. But which plugin do you recommend if I have to go that route? Would Quadmenu or Max megamenu be compatible?

    I’m looking for font settings for site content (paragraph text) and also for the footer widgets. Sorry if I’m being blind! 🙂

    Thanks,

    Ben

    #249040

    Yeah you are right. I’ve saved the Gutenberg block as a widget and output it with a shortcode using a plugin but that must be causing issues on this page. Thanks for taking a look.

    In forum: Virtue Theme
    #249033

    Hello,

    Can you help me solve the following? We are trying to link to a page containing a SiteOrigin Tabs widget. We would like to have different tabs opened depending on which link you choose from a previous page. Example: Link A opens the page with Tab A opened, Link B opens the page with Tab B opened and so on…Is that possible? I have attached a diagram below for reference.

    Thank you in advance for your help!

    Doug

    #248990

    Hey Kevin,
    To display more than 18 on sale products on the homepage you would need to use a shortcode like this: [sale_products per_page="28" columns="4"]
    You can paste that into your home content area into a text widget within the home widget area.
    Hope it helps!

    Hannah

    #248982

    Hey,
    widgets default to left align. You would have to be center aligning in the settings for the widget title to center align. Can you send a screen shot of your widget settings or better send a link to your site?

    Ben

    #248959

    Unfortunately, yes. The banner is already taking up the full width of its container. If you want a full-width banner on a sidebar layout one option would be to create a row in page builder with a right column where you can add your widgets, giving it a sidebar effect. Then you can add a separate full-width row under that. Would that work for you?

    Hannah

    #248955

    Steps to reproduce:
    1. Use 5 footer widgets with titles

    Note that the 5th title aligns center on the whole area as if it would span columns 5+6. This looks bad. Maybe you could set left align on those titles out-of-the-box for a better experience?
    h2.widget-title { text-align: left; }

Viewing 20 results - 1,241 through 1,260 (of 13,419 total)