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 - 3,241 through 3,260 (of 13,419 total)
  • Author
    Search Results
  • #199161

    Hey Joya,
    You can make your image be contained on mobile with this css:

    @media (max-width: 768px) {
    .siteorigin-panels-stretch.kt-panel-row-stretch.panel-widget-style.panel-row-style.panel-row-style-for-74-0 {
        background-size: contain !important;
        background-repeat: no-repeat;
        padding-bottom: 75px !important;
        padding-top: 75px !important;
    }
    }

    It looks like you have a blank div on your page that is adding extra space. Do you see that?

    Hannah

    In forum: Reply To:

    In reply to:

    #199153

    Here is some css that will allow you to adjust the padding between your widgets:

    .sidebar .widget {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    Adjust the px amount as desired.

    Here is some CSS that will target the widget headings in your sidebar:

    .sidebar h4.widget-title {
        font-size: 25px;
    }

    Let me know if that works for you!

    -Kevin

    In forum: Ascend Theme
    #199142

    Hello Kevin, I don’t find the “link to” setting, sorry.

    I’m in Page Builder, Ascend Gallery setting. And in ‘Above footer widget area’.

    Thanks, Anita

    In forum: Reply To:

    In reply to:

    #199113

    Hi,
    In Theme Options > Topbar Settings set “Enable widget area in left of Topbar?” to “On”. Then also turn on the “Topbar Layout Switch.” Then navigate to Appearance > Widgets and add a Pinnacle: Social Links widget to your topbar.
    Hope that helps!

    Hannah

    #199036

    Hey, Thats more closely resembles a product layout. Might be worth considering using products and if you don’t want to sell placing them into catalog mode.

    Inside of a portfolio, you would need to choose “none” for the portfolio options and set the layout to three rows.

    Then use page builder inside your content. You can add two columns, in your left column you would need to add a thumbnail slider. You can do this using visual editor widget and clicking add media then building a gallery. When you output you can set the shortcode to type="slider" and thumbs="true"

    Ben

    #198998

    Hey guys,
    I would like to display a “latest posts” section in a page different from front page. I have done a beautiful “latest posts” section in my front page ( see http://www.rauliweb.cl) using the “module latest posts” label of the “home page layout” setting, but how to display that same element on another page? I though some page builder widget would allowed me to do that but haven´t found it yet!
    please help!!!

    saludos desde Chile!

    #198970

    how to post recent review product on carousel style on homepage layout. I already added home widget recent review product but it displays as a list.
    could please provide a coding or any other way to make it looks nice side sliding displays not display as a list on homepage.
    my domain is http://www.mocharibbon.com

    thanks

    In forum: Ascend Theme

    In reply to: home page content

    #198935

    Try this CSS in Theme Options> Custom CSS:

    .home-widget-box .textwidget {
        text-align: center;
    }
    .home-widget-box .textwidget .btn-shortcode {
        width: 100%;
    }

    -Kevin

    #198934

    I hadn’t, but I just did. No change.

    BTW I’ve since changed the right widget to an image widget, but that shouldn’t make any difference.

    Thank you for your help.

    In forum: Ascend Theme

    In reply to: home page content

    #198927

    Hello,

    A simple workaround for this would be to use your home widget area as a second page content area. You’ll just edit the content in Appearance> Widgets, rather than the page edit screen.

    You can use a page builder layout builder widget that will allow you to have full control of the content.

    Does that work for you?

    -Kevin

    In forum: Ascend Theme

    In reply to: Mobile friendly

    #198857

    In your text widget in the footer that has <<< Zurück you have broken html from your script, your missing the closing em tag.

    You have:

    <em><<< Zurück<em>

    Should be:

    <em><<< Zurück</em>

    start there. You do have some caching showing but looks like server. Who is your host.

    In forum: Ascend Theme
    #198856

    I’m going to suggest you use a layout widget inside your pagebuilder row, then assign the background to the layout widget in the left column and not for the entire row. Then on mobile that background will not have to “cover” the entire height of that row broken down.

    Does that make sense?

    Ben

    #198775

    Hannah, Thanks for your help, but this is not what I wanted. When I set up the Homepage as you suggested, the Latest Posts fall directly under the slider, and the Welcome message that was present (when I had set the Homepage as a static page) doesn’t display, of course, because the Reading setting now calls for “Your latest posts”. In addition, to get the Featured Image to appear at the top of each of these Latest Posts, I have to set Theme Options > Home Layout > Page Content Options > Latest Post Display > Full (instead of Post Excerpt). That makes for a very long scroll down through many full posts before the viewer gets down to the icon menu. Is there a relatively simple way to get the Homepage set up in the following order, top to bottom: TOPBAR > HEADER > SLIDER > TITLE/INTRODUCTION > ICON MENU > LATEST POSTS (Full width, excerpt, featured image on top of each) > PORTFOLIO GALLERY > FOOTER? I’m willing to create a child theme and modify template(s) or insert custom block(s) or widget(s) using Page Builder if necessary. Would either the Pinnacle or Ascend theme be better for my design?

    I purchased the Virtue Premium theme for a previous project. I chose the free version for this site because it has all I need in this case (presumably) and I don’t want any clutter that might slow the site down.

    #198726

    Thanks Hannah!
    I wasn’t familiar with the [class*=…] construct so thanks for the education!

    I moved the .col-md-4.footercol1 {text-align: center;} outside of the media-query so that it applies for all screen-widths.
    The final working code is:

    /* Arrange 3 icon-links in a row */
    .footercol1 .footer-widget.widget {display: inline-block !important;margin-top: 10px;}
    .footercol1 aside.widget_media_image {display: inline !important;}
    .col-md-4.footercol1 {text-align: center;}
    
    @media (max-width: 992px) {
        .widget-1.widget-first.footer-widget.widget {
        width: 100%;
        }
    }
    @media (max-width: 1200px) {
        .footercol1 [class*=wp-image] {
        max-width: 90px !important;
        }
    }

    If anything in there is contradicting, please let me know. But otherwise, the output is great!
    Thanks again.
    Phil.

    In forum: Virtue Theme

    In reply to: Testimonial settings

    #198653

    Hi Lyn,
    From Appearance > Widgets you can set the number of posts to show in the Virtue: Testimonial Carousel settings.
    Hope that helps!

    Hannah

    #198651

    Hi Costa,
    Sounds like a conflict with one of these plugins. Have you tried contacting the plugin authors? Are your other widgets working as they should?

    Hannah

    #198636

    Hannah,

    I’ve find a way to work around the problem. I’ve put the size in the custom width and height in the virtue image widget and now the display is ok .
    Putting the image size to 300×300 is not working but 300×300 in the custom parameters works.
    Problem resolve .
    Thanks

    Gerard

    #198625

    Hi Hannah,

    Seem to be the same and I have put the size of the image to be Medium – 300×300 in the Kadence Widget.
    You can have a look : here

    Thanks for helping.

    Gerard

    #198614

    Hi Gerard,
    Have you tried using the Virtue image widget? That will give you an option to set a height and width for your images. Let me know if that still doesn’t work for you.

    Hannah

    #198611

    Try adding this to your custom css box in Theme Options > Advanced Settings:

    @media (max-width: 992px) {
    .widget-1.widget-first.footer-widget.widget {
        width: 100%;
    }
    .col-md-4.footercol1 {
        text-align: center;
    }
    }

    Does that work for you?
    You can attach a screenshot using a site like this: https://postimages.org/

    Hannah

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