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 'COLUMNS'

Home / Forums / Search / Search Results for 'COLUMNS'

Viewing 20 results - 1,881 through 1,900 (of 3,937 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #144907

    Hey Rodrigo,

    I’m not sure I’m following. Are you wanting to display a full portfolio on your home page? If so, you can pull it there with some shortcode like this:
    [portfolio_posts orderby=date excerpt=false columns=4]

    I’m not sure if you can add a filter to the shortcode, but Ben or Hannah should be able to elaborate on that when they see this thread.

    Add that to the text editor on your home page and the portfolio will appear where you’ve assigned page content in Theme Options> Home Layout.

    Does this work for you??

    -Kevin

    In forum: Virtue Theme

    In reply to: product carousel

    #144582

    You can configure this with a Virtue Carousel widget, or you can use shortcode like this in a text editor to pull the carousel:

    [carousel type=cat-products orderby=date columns=4 items=8 speed=9000 scroll=all cat=photos]

    If you’d like to take a look at all of the shortcodes for the theme, check out this page:
    http://docs.kadencethemes.com/virtue-premium/shortcodes/

    Let me know if this works for you!

    -Kevin

    #144555

    Hi guys!

    I have created a Child Theme for the virtue premium and I’m not able to override the style from H1 to H5. I can override h6 and p.

    Here is my style.css and my functions.php

    /*
    Theme Name: Virtue Premium Child
    Theme URI:
    Description: Virtue Premium Child Theme for Cardonet
    Author: Jesus Sanz
    Author URI: http://www.jesussanz.net
    Template: virtue_premium
    Version: 1.0.0
    Tags: light, dark, two-columns, right-sidebar, responsive-layout
    Text Domain: virtue-child
    */

    /* Theme customization starts here
    -------------------------------------------------------------- */

    <?php
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    function theme_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'child-style', get_stylesheet_uri(), array( 'parent-style' ) );
    }

    The website is on my local computer, so I can’t share a link of it. Would you mind to let me know where is my mistake?

    Thanks 🙂

    #144447

    Hi,
    I forgot to tell you that I had already tried that, it seems the “columns” setting has no effect.
    Right now, the shortcode is:
    [product_categories number=”40″ parent=”9304″ columns=”4″]
    But you will see that it seems it has no effect – 4 columns during a very short while, then 3.
    Christian

    #144411

    [carousel type=featured-products orderby=date columns=4 items=30 speed=5000]

    edit: http://www.essenzialmenta.it/home-bozza/
    under h1 PRODOTTI there are grid and carousel
    Thanks for the reply!

    In forum: Ascend Theme

    In reply to: Album Page Setting

    #144374

    Hey,
    First, you should update to the latest version of the theme 1.1.6

    Then if you want to place an album and edit its settings you can place it in a page using a shortcode:

    [kadence_album id="albumID" imgwidth="400" imgheight="400"]

    You have to use a function in a child theme or custom plugin to override an album column setting.

    add_action('kadence_album_columns', 'custom_albumn_column_setting');
    function custom_albumn_column_setting() {
    $columns = array(
    'lg'=>'4',
    'md'=>'3',
    'sm'=>'2',
    );
    return $columns;
    
    }

    Ben

    #144371

    Frank it really is super helpful if you can post a link to your site…

    Making an assumption I’m going to guess you have turned on width to be 1440 max width. Columns are defined on a 1140 max width grid so if you’ve set the max width to 1440 in your theme options > layout settings just change your column setting to 3 which will be 4 on larger screen sizes where 1140 is used.

    Ben

    In forum: Virtue Theme
    #144276

    Ok,

    1. you will want to add this css if your wanting the logo to be down so far:

    #nav-main {
        margin-top: 108px;
    }

    2. It’s not a built-in option. You could enable the widget area logo, then add CSS to hack the menu up and to the right. If you enabled with widget area logo layout and add your socal widget I could help with some css.

    3. Add padding in pagebuilder to the row. Just edit the row and look in your sidebar settings and you’ll see it.

    4. add this css:

    .home-iconmenu .home-icon-item i {
        display: inline-block;
        padding-top: 10px;
        font-size: 40px;
        text-align: left;
    }
    
    .home-iconmenu .home-icon-item h4 {
        display: inline-block;
        padding-left: 10px;
        margin-top: 0;
    }

    5. you can set up your pagebuilder row however you want. Add columns add more than one widget it’s completely customizable.

    https://www.kadencewp.com/using-page-builder/

    Ben

    #144267

    When ising a shortcode you need to define in the shortcode:

    [product_categories number="40" parent="9304" columns="4"]

    Ben

    #144256

    Hi,

    On this page:

    I an using this shortcode to display my product categories:
    [product_categories number=”40″ parent=”9304″]

    Though the settings are set to 4 columns for product categories (and it works fine when I set my product categors pages to “sub-categories” display type setting), I get during a short while my 4 columns and then it turns to 3.
    I am not sure it your template or some setting or tweak left somewhere, but I was not able to find any reason.
    Can you help me?

    Regards,
    Christian

    #144181

    1. When you edit a page builder row you should see options to set the padding for mobile. You should be able to adjust the spacing from there. Make sure you’re using the latest version of the theme and plugin.

    2. It looks like you’ve added mobile padding? Check the page builder settings again.

    3. Do you mean “what we do”? I’m seeing that in mobile. Can you send a screenshot? Have you tried clearing your cache?

    4. You can put whatever you want in the footer copyright text box from Theme Options > Misc Settings. Is that what you mean?

    5. You can use this css to center your footer menu and credits:

    .footercredits {
        width: 100%;
        text-align: center;
    }
    .footernav ul li {
        float: none;
        display: inline-block;
    }
    .footernav {
        float: none;
    }
    .footernav ul {
        width: 100%;
    }

    You can paste that into your custom css box in Theme Options > Advanced Settings. To add a logo just add an image widget to one of your footer columns, then use css to center it. I can help with the css if you’d like.

    Hope that’s helpful!

    Hannah

    #144104

    I thought I had sent this earlier, but don’t see it.

    Is there a way to use short code to display only certain products in a carousel style, by using ids=”21,36,305″ for example? For example how can I get something like

    [carousel type=product ids=”37,53,83,67,305″ columns=3]

    to list those specific products in a carousel format. The above doesn’t work, by the way. It does show some products, but not the ones I specified. In fact, I can’t figure out why it displays the ones it does. There doesn’t seem to be a rhyme or reason. /Bob

    #144091

    Actually, the shortcode I gave you was incorrect. My apologies. Try this:

    [carousel type=product orderby=date columns=5 cat=batting-cages]

    Let me know if that works for you.

    -Kevin

    #144078

    The following did not work for me:

    [carousel type=cat-products orderby= date columns = 5 cat=batting-cages]

    I have this in a “Visual Editor” widget. On my dev site it shows shows up as a blank line. I have a category of “Batting Cages.” Not sure what is wrong here. I purged cache too.

    site: http://cagesplus.com/dev/

    Thanks. /Bob

    In forum: Virtue Theme

    In reply to: Display glitch

    #144073

    Hey,
    The way the carousel loads is in single columns then once javascript loads on your site it’s going to build the carousel.

    3-5 for you to see javascript load it awful load time. So I would suggest checking out this post: https://www.kadencewp.com/need-for-speed/

    The theme doesn’t control or edit the CSS of that carousel in any way.

    You could consider using the theme carousel which will load invisibly until javascript runs or you can add CSS into the theme options just for that carousel. For example css like this:

    .owl-carousel > .wcps-items {
        max-width: 25%;
        float: left;
    }

    Ben

    #143958

    On my home page there is white space between the header and the two images (side by side) below it.

    Also, the two images, which are within a shortcode:column (two columns), have white space in the middle, between them – padding I assume.

    1. How do I remove the white space directly under the header?
    I found some css in previous posts in the forum, and added them to the theme’s style.css – but neither worked for me:
    .home .contentclass {
    padding-top: 0;
    }
    And:
    .contentclass {
    padding-top: 0;
    }

    2. How do I remove the white space between the images within the column shortcode, and use the full width of the column?

    Any help appreciated.

    Regards
    Tom H

    #143701

    Hello
    I have a problem, when creating a row with 3 columns to place a widget “call to acction” in each column, these are displayed one under the other instead of showing them side by side

    In forum: Virtue Theme

    In reply to: responsive

    #143615

    A column is designed to break down on mobile.

    That is how responsive works.

    If you want columns to remain you must specify that in your shortcode.

    For example change:

    
    [columns] 
    [span2] [/span2]
    [span10] [/span10]
    [/columns]

    to:

    [columns] 
    [span2 tablet="span4" phone="span6"] [/span2]
    [span10 tablet="span8" phone="span6"] [/span10]
    [/columns]

    Ben

    In forum: Virtue Theme

    In reply to: Contact Page Broken

    #143609

    kevin use pagebuilder to create columns. You are not using the theme contact form so it’s not going to auto align for you how you want using a plugin.

    Ben

    #143570

    Hi,

    recently Page builder is not working well. When I use two or three columns ia one row.
    Still all the content is placed one above the other instead side by side.

    See link for side:
    publicaties-en-prijzen

    This happens with Google Chrome and with Microsoft Edge.

    Hope you can give me an solution.

    Kind regards,

    Bert

Viewing 20 results - 1,881 through 1,900 (of 3,937 total)