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,341 through 1,360 (of 3,937 total)
  • Author
    Search Results
  • In forum: Reply To:

    In reply to:

    #190371

    To center it, try creating a row in page builder with three columns and place your gallery in the center column. Would that work for you?
    You can use a plugin like this to add links to your images: https://wordpress.org/plugins/wp-gallery-custom-links/

    Hannah

    In forum: Reply To:

    In reply to:

    #190314

    If using the visual editor widget you can click Add Media > Create Gallery. Then once you’ve selected your photos and created the gallery you can set the number of columns up to 9 under Gallery Settings.
    Hope that’s helpful!

    Hannah

    In forum: Reply To:

    In reply to:

    #190312

    Hi Hannah,
    I would like to increase the number of columns beyond 6. How do I do that?

    In forum: Reply To:

    In reply to:

    #190308

    Hi Doris,
    If you increase the number of columns the image sizes will get smaller. Does that work for you or are you wanting to keep the 6 columns?

    Hannah

    #190230

    That css was specific to one column, row and widget in page builder. If you changed the columns or moved widgets then the ID would have to change.

    Currently, it would still work, please add in your custom css box in your theme options then hover over “get involved”

    Ben

    #190172

    I will check extensions though not sure what would do that

    So on your Chrome you see 3 columns each with 3 products going down the home page I sent you? Because I only see 2 columns, and 2 products in each row, the third product in columns appears and then disappears.

    IMAGE – My Chrome

    https://internetslayers.com/home-CHROME.png

    VERSUS

    IMAGE – My Firefox

    https://internetslayers.com/Home-FIREFOX.png

    I dont see any extensions that would alter how a page looks

    YOU ARE RIGHT, I JUST CHECKED BROWSERLING TESTER AND THEIR CHROME DISPLAYS THE SITE CORRECTLY – HAVE ANY IDEA WHAT IS GOING ON?

    #190127

    Hi Ben,

    I think at some point that CSS was added to fix a problem with the display of product columns on the home page, and you were right, once I removed that CSS line the Related Products is fixed and working

    Another issue – On the home Page and other multi Product pages, like Shop and Category Pages, there are supposed to be 3 columns of products showing, but ONLY IN CHROME only 2 are showing and there is a small white space for the third column, again you can see the 3rd column of products appear and then disappear, (in Firefox the page displays correctly) can you can check that

    https://internetslayers.com

    There was this custom CSS

    body.home .products .kad_product:nth-child(3n+1) {
    clear: left;
    }

    I removed it to test but the Home page issue still persists

    #190108

    Hi Randi,
    I would recommend using page builder. Then you can create a row with two columns and put your text in one and your gallery in the other. Would that work for you?

    Hannah

    In forum: Ascend Theme
    #190021

    Hey,
    When you set it to 1 column it’s going to fill the space given. And the height will follow your ratio with the width.

    So I suggest in pagebuilder you make three columns and place the shortcode in the center which will define the container that the one column portfolio posts should fill.

    Ben

    In forum: Virtue Theme

    In reply to: Mobile version display

    #190013

    Correct, there isn’t a built-in function for this. A workaround could be to create portfolio types and assign your portfolio posts to the type based on the row. So let’s say you wanted a row with three portfolio posts. You could create a portfolio type, assign three portfolio posts to that type, then display it using a shortcode like this: [portfolio_posts orderby=date excerpt=false columns=3 items=3 height=200 lightbox=true cat=photos] You would just replace “photos” with your set type (category). Would something like that work for you?

    Hannah

    In forum: Ascend Theme
    #189996

    Hannah,

    The changing cat for type indeed solve my problem. I made the div container transparent using a similar style sheets but I added to my Page Builder widget.

    url: https://winenext.com

    1- I added [portfolio_posts items="1" columns="1" style="pgrid" ratio="landscape" lightbox="true" type="cast-wines" height=200 ] but now my cast wines portfolio display is TOO big! How I change it’s height and width?

    In forum: Ascend Theme
    #189994

    Hi Hannah,

    url: https://winenext.com

    1- On my landing page this is the shortcode I have implemented to only display the Cast Wines portfolio link, and yes I do want the hover effect with the portfolio info. This is my current shortcode [portfolio_posts items="1" columns="2" style="pgrid" ratio="landscape" lightbox="true" cat="cast-wines" ]

    url: https://winenext.com/producers/

    2- Where it says “You select, we connect, they ship”. The WHITE <div> container in front of the cellar key picture. I would like to have that white background semi transparent. What class should I call? Is to the right of where it says “What’s next? UNLOCK AND DISCOVER CELLAR GEMS. Our artisan wine producers have given us access to some of their rare and exclusive limited releases, back vintages and large format bottles”

    #189945

    I have a WooCommerce website with the Virtue theme. All clothing designers in my shop have a product category. I want to display all designers on the designer page in a grid with four columns and a few dozen rows but I don’t want to display images. I set the page up with the shortcode [product_categories] but it tries to display images, which there are none. Is there a way to accomplish this?

    #189733

    hi,
    I’m using the info boxes in layout builder (5 columns in one row/2 in the second) in the homepage widget area. my client sent me a photo that on some computers the description text is running into each other despite each info box being in its own column. Any idea why that would happen/how to fix?. (this is hard for me to test as the bug doesn’t happen on my computers).

    In forum: Virtue Theme

    In reply to: Logo size issue

    #189675

    Thanks Kevin, it looks like this:

    // Move gallery slider up above banner in header.
    add_action('kt_after_header_content', 'my_custom_head_output');
    function my_custom_head_output() {
    echo do_shortcode('[gallery columns="12" type="imagecarousel" caption="true" ids="75,74,73,72,71,70,69,68,67,66,65,64,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,80,77" orderby="rand"
    link="file" masonry="default" height="100" speed="4000"]');
    }
    
    add_action('kt_after_header_content', 'my_custom_head_banner_output', 30);
    function my_custom_head_banner_output() {
    echo '<div class="container virtue_sitewide_banner"><div class="virtue_banner"><img src="http://greytownrailtrail.org.nz/wp-content/uploads/2018/04/Greytown-Rail-Trail-sign.jpg" width="2338" height="622" alt=""></div></div>';
    }
    #189625

    Good morning Kadence,

    There is a strange issue with my Ascend Carousel only displaying 3 columns when I have all the settings asigned to 4 columns. I’ve also tried searching for the issue within the theme options but still no luck. Am I missing something stupid?!

    Any help greatly appreciated,

    Andrew.

    #189611

    Are you adding through pagebuilder? You can use pagebuilder columns or just add in a the visual editor widget.

    #189610

    Hey Sam,

    1. In your theme options > blog options. Scroll down to “Blog Post Summary Default” what is that set to?

    2. You should use pagebuilder, then create three columns (or however many you want) and use the “visual editor” widget. Add that widget to each column. Open the widget and click “virtue shortcodes” there choose “icon box” and generate the icon box shortcode.

    3. Same as above, using pagebuilder makes this easier to work with and control. But you can also add column shortcodes and place the icon box shortcodes inside those columns as well.

    Ben

    #189501

    Thanks Ben.

    The page is at http://garypickeringfunerals.amweb.nz/about-us/

    I’m pulling the staff entries in with the shortcode [staff_posts orderby="date" order="ASC" link="true" columns="2" height="800"]

    Thanks for any light you can shine on this.
    Kind regards,
    Phil.

    In forum: Pinnacle Theme

    In reply to: Woo Templates Archive

    #189422
    This reply has been marked as private.
Viewing 20 results - 1,341 through 1,360 (of 3,937 total)