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,581 through 1,600 (of 3,937 total)
  • Author
    Search Results
  • #171143

    Hannah, thanks that worked, however there is anotther thing I need as well:

    Something like
    [carousel type="portfolio" items="10" columns="4" order="DESC" orderby="modified" cat="slug" exclude="slug"]

    Is there a way to exclude some portfolios with the selected slug.

    In forum: Virtue Theme

    In reply to: Menue Line on TOP

    #171087

    Hello Kevin,

    here is a link of an example page:
    http://neu.dassonnenhaus.com/blog-grid-four-columns/

    This is how it looks like at the beginning (the navigation is ‘thick’ and the profile picture is big):
    https://s7.postimg.org/rdg8y13yj/jenny1.png

    and when I scroll down a bit, then tha navigation is smaller and the profile picture too, like on this image:
    https://s7.postimg.org/n4biw1nwb/jenny2.png

    I hope you understand now my problem. I would like that the navigation is at the beginning small like it is after scrolling. (I don’t want any resize-effects)

    Kind regards

    In forum: Virtue Theme
    #170983

    1. You can use this css:

    #topbar-search input[type=text] {
        background: green;
    }

    2. I’m not sure what you mean. You want the text to align center in the three columns?

    Like this:

    footer#containerfooter {
        text-align: center;
    }
    #containerfooter .virtue_social_widget a {
        float: none;
        display: inline-block;
    }
    In forum: Virtue Theme

    In reply to: Home Icon Columns

    #170916

    Hey Kevin,

    I should be able to provide some CSS to increase the number of columns. Can you post a link to the icon menu so that I can see your current configuration?

    Thanks,
    Kevin

    In forum: Virtue Theme
    #170914

    I was wondering if I can increase the home Icon Menu columns setting to more than 6. In the custom CSS

    #170467

    So you actually want a carousel that shows your oldest products? Seems odd that you’re tilting the carousel as Newest.

    The widget won’t give you the option to order by date in reverse like your doing with that plugin. By date defaults to DESC. So you can use a shortcode like this to set the order by date but make it ASC so it’s oldest first.

    [carousel type="product" columns="4" items="12" orderby="date" order="ASC"]

    Finally, so you know these products will never change because oldest will always remain oldest. Since you started this by wanting something that woocommerce automatically changed it is again odd that you want a carousel ordered by date in reverse.

    Ben

    In forum: Virtue Theme
    #170274

    Kevin,

    Here’s the shortcode that I’m using:

    [blog_grid columns=”3″ items=”6″ orderby=”date”]

    The link to the page is http://www.freshfoliodesign.com/.

    Ben, changing the blog grid sorting to equal height seems to have solved the issue. It just seems to be an odd way for it to handle the sorting, especially since the postings were fairly close in height already. Interesting.

    I think the issue is handled, but I included the info that Kevin requested just in case there’s more info that I should have.

    Thanks,
    Dean

    In forum: Virtue Theme

    In reply to: Custom Staff Grid

    #170186

    Hey,
    There was an update just released the resolved the staff shortcode issues with columns

    Ben

    In forum: Virtue Theme

    In reply to: Custom Staff Grid

    #170145

    Hello,
    the shortcode I was using to display the staff with one column is no longer working. (post #33155)

    It is defaulting to four columns. Can you tell me how to get it back to a single column as I had it?

    http://www.alta-land.com/staff/

    Thank you!

    #170013

    In that case you can use the column shortcodes and add tablet="span6" to the shortcode so that would look like this:

    
    [columns]
    [span6 tablet="span6"]
    Content
    [/span6]
    [span6 tablet="span6"]
    Content
    [/span6]
    [/columns]

    That will keep your column at 50% on tablets.

    as for changing the text align, you would need to use custom css in the theme options with a media query targeting the section. So for example lets say you add that section in a div with a class “desktop-align-right” which would look like this html

    
    <div class="desktop-align-right">
    heading that I want to align right
    </div>

    Then in your theme options, you would use css like this:

    @media (min-width: 765px) {
    .desktop-align-right {
    text-align:right;
    }
    }

    Ben

    #170005

    Hey,
    I am going to again recommend that you use pagebuilder. Since you can add columns, choose when they collapse and you can add in mobile-specific css into a widget.

    Ben

    #169974

    Thanks, both! Sorry, I could have been more specific 😉
    On the home page there is some body text where I have separated the headings from the following paragraph using 2 columns. E.g. “The right system” etc.

    Once I understand the solution, I will want to re-use it on the blog post to again separate the headings from the text in 2 columns.

    In each case, I’d like to maintain the column layout on iPad but let it collapse when we get down to small devices. When it does collapse, the heading (column 1) needs to switch from right-justified to left-justified.

    Thanks team.
    Phil.

    #169969

    Build your content in pagebuilder and you can set a specific screen width at which you would like the columns to collapse in your pagebuilder settings.

    Which heading on which page are you referring to?

    Ben

    #169940

    Hey,

    What columns on your site are you referring to? Can you please specify?

    Thanks,
    Kevin

    #169935

    Hi Hannah,
    I see you have dealt with similar problems in the past, here and here.

    I’d like to retain the column arrangement for iPad but collapse the columns when we go to small devices, like phones for this site.

    Also, once the columns do collapse, could the justification of the first column (the headings) change to left-aligned?
    Very many thanks,
    Phil.

    #169647

    Hi,

    since last update the theme ignores the columns parameter for staff posts

    [staff_posts orderby="menu_order" columns="3" items="-1" limit_content="false" cat="team1"]

    Every staff posts having four columns now.

    Can you help?

    Regards,
    Benjamin

    #169526

    Hello again folks,

    My penultimate question regarding my site.

    – I added pictures to this page using the pinnacle shortcode in the SiteOrigin Editor (check the accordions in

    the code is below

    [gallery link="file" type="default" caption="default" masonry="default" width="200" height="500" columns="5" ids="49"]

    I’ve changed the width and height, but it doesn’t seems to change dimensions of the picture at all

    I’m guessing the gallery link is not the best way to do this, as it’s just a single image. But i want the image open as a pop-up when clicked, and it seems the gallery link is the best way to do that.

    Is there any way to change the size of an image, and still be able have it open up its own window when clicked, without using a separate widget for it?

    #169041

    Hey Angelo,

    One way to control the size of your carousels is to add them through page builder. You could add the carousel to a page builder row that has a set number of columns, then you can adjust the size of the column that contains your carousel until you have it the way you want it.

    Does that work for you?

    -Kevin

    #169037

    Hey Felippe,
    Try changing your shortcode to this:
    [sale_products per_page="100" columns="4"]
    Does that work for you?

    Hannah

    #168760

    Hi Ben,

    Many thanks, code worked and it is looking much better now.

    About the mobile version for this page, is there a way that i could display less columns per line?

    Many thanks
    P

Viewing 20 results - 1,581 through 1,600 (of 3,937 total)