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

Home / Forums / Search / Search Results for 'banner'

Viewing 20 results - 241 through 260 (of 1,614 total)
  • Author
    Search Results
  • #245951

    Hmm, try this instead:

    @media (max-width: 550px) {
    .panel-widget-style.panel-widget-style-for-8-1-0-0 .infobanner {
        height: 600px !important;
       padding-top: 150px;
    }
    }

    Does that get you there?

    Hannah

    #245946

    Try adding this to your custom css:

    @media (max-width: 768px) {
    .panel-widget-style.panel-widget-style-for-8-1-0-0 .infobanner {
        min-height: 450px;
        padding-top: 50px
    }
    }

    Hope it helps!

    Hannah

    #245906

    hiben
    thanks for your return?
    1 –
    The guy for whom I am making thgis site , do not want a footer
    as well on Main (3 languages choice ) page,than in the rest of all pages ..
    that”s why this is set into Advance setting Css
    /* do not display menu and footer on mainhome landing page page */
    .home #kad-banner, .home #containerfooter {
    display:none;
    }

    2 – all these code in the footer you say it not usefull . I agree it was because he wanted a display without browser menus… mmmm grrr I know I searched for some fullscreen function . Ok any way : we can suppress it . I haveconvinced him that the Browsers don’t like that a function can run fonctions of the browser …am I right?

    3 before the site was working even this this

    4 – I know it’s a bit diseappointing but the guy do not want images on items on portfolio page ..
    and the guy want that when we load a pôrtfolio page ( ligthing designer for example ) , that no item are displayed cause the page is too crowdly it’s only when you select a filter that the referent items are displayed.
    Jannah your collaborator has told me to use these commands .. so it works fine for my GUY .

    you have given in the past sometricks like in this language FR version https://fr.mauriziomontobbio.com/portfolio-createur-lumiere/

    I just need in the english wersion to come back to the way the Portfolio page is displayed in the french one.
    Id is mm-fr
    pass is Paris2018

    this fr page is fine, is ok except that the vert pos of the ine of filters name is to down . hope we can solve that later .
    Maybe a idea : how know how to export that FR portfolio page and how to import only that into the EN version . Maybe it’s sufficient .. maybe it should work no ?

    HAVE YOU WELLUNDERSTAND THE PROBLEME On the portfolio pages ( lighting designer and Technical dir ) when moving the mouse on the filters type buttons. to display a filter type/// there are in the back some items appearing a,d a conflict ..

    it could surprising that someone do not want image in the items buttuns but I have found one … oki he likes that so I give it ..

    I wait for your answers … hope you have understand ..
    I would like to repair the ENv ersion cause I have done so many tuning in the option theme and other places that i do not want tor edo all ..

    Merci beaucoup Mister ben
    MArc

    In forum: Ascend Theme
    #245818

    Hey,
    If you need to add code into the block editor then you need to use the custom html block. You don’t need to add a row layout-block first.

    In the future, it’s easier if you explain what you are wanting to add in as much detail as possible. Saying you want a banner is confusing vs saying you want to add some code for an affiliate banner. It will help us get you the best answer quicker.

    Thanks!

    Ben

    In forum: Ascend Theme
    #245784

    I don’t want an image behind the banner 🙂

    In forum: Ascend Theme
    #245782
    This reply has been marked as private.
    In forum: Virtue Theme
    #245763

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

    #kad-banner .container {
        width: 100%;
    }
    .col-md-12>#logo {
        max-width: 1200px;
        text-align: left;
    }

    Does that do what you’re envisioning?

    Hannah

    In forum: Virtue Theme
    #245759

    I can’t see your first link, just redirects me,

    however, this css should get you what you want and apply to all.

    body.single-picu_collection .wrap {
        background: #222226;
    }
    body.single-picu_collection #kad-banner, body.single-picu_collection #containerfooter  {
        display:none;
    }

    I’ve no experience with that plugin, I’ll have to check it out, maybe add some native support.

    Ben

    #245756

    Hey Razia,
    Try adding this to your custom css:

     #kad-mobile-banner input[type=text] {
        height: 35px;
        min-width: 350px;
        border-radius: 20px;
    }

    You can adjust the Search Placeholder Text from Theme Options > Langauge Settings.
    I’m not sure of a way to change the search text to an icon. Sorry.

    Hannah

    In forum: Ascend Theme
    #245718

    Hey,
    You can create a banner using the row layout block. Set a background image for the row, then you can add whatever block to the row. Is that what you mean?

    Hannah

    In forum: Virtue Theme
    #245714

    Hey,
    Are you just wanting to hide the header? If so, you can add this to your custom css box in Theme Options > Advanced Settings:

    .postid-486 header#kad-banner {
        display: none;
    }

    Hannah

    #245707

    Hey Hannah,

    In Kadence blocks what block do I add for a banner?
    I see there are options for GetYourGuide but not other (WorldNomad)

    Thanks
    Mimmie

    #245676

    Hey,

    Just want to explain, This kind of a customization will require that you are comfortable working with php and updating that PHP in the future should changes be needed. Anytime you work with a child theme you are responsible to update and manage that child themes code.

    You will need to add a function that looks like this:

    add_action('kadence_mobile_header_center', 'custom_add_search_mobile_header' );
    function custom_add_search_mobile_header() {
    global $ascend;
    if ( class_exists( 'woocommerce' ) && isset( $ascend['header_extras_search_woo'] ) && $ascend['header_extras_search_woo'] == '1' ) { 
    get_product_search_form();
    } else {
    get_search_form();
    }
    }

    Then you will need to turn off the mobile sticky and add some css like this:

    #kad-mobile-banner .mobile-header-container {
        flex-direction: column;
        height: auto;
    }

    Ben

    #245512

    Hello !

    I have sticky header, but 1px white stripe – line below appear on top scroll. It’s #kad-banner-sticky-wrapper .sticky-wrapper It can be seen at screenshot I have attached.

    Site:

    • This topic was modified 6 years, 2 months ago by vgpapi.
    • This topic was modified 6 years, 2 months ago by vgpapi.
    In forum: Virtue Theme

    In reply to: Ken Burns effect

    #245485
    This reply has been marked as private.
    In forum: Virtue Theme

    In reply to: Ken Burns effect

    #245433

    Hi Hannah

    1. This works only for the desktop main page. Without @media (min-width: 992px) { ... } the kadence banner is not shown on the mobile main page. This was the reason why we wrapped it in the media query. Seems to be tricky. Summarizing what we want:
    Desktop: the background video shall be shown only on the main page. On all other pages the kadence banner shall be shown.
    Mobile: only the kadence banner shall be shown, on the main page as well as on all other pages.

    2. We use the German WordPress-version, but we don´t have installed a translation package or something similar. Wheter the animation in setting works I can´t evaluate this. Please have a look at

    https://www.musikverein-waldfeucht.de/blog/

    Do you think that it works as it should if you scroll down?

    3. Do you mean the post edit for each single post? Either I don´t know where to find the option.

    In forum: Virtue Theme

    In reply to: Ken Burns effect

    #245410

    1. Sorry, I should have recognized this before. The first slider is your kadence banner that you’ve added from Theme Options > Main Settings > Sitewide Banner. You’re using css to hide it from desktop, which is why it’s only showing on mobile. You can use this css to hide it from the homepage:

    .home .ksp-slider-wrapper.kt_slider_single_slide.kt_slider_hide_controls.kad-slider-3.kt-ratio-slider.kad-slider-parallax {
        display: none;
    }

    2. Are you using a translation plugin? I wonder if that is interfering. Regardless, is the animation in setting working as it should?

    3. In your post edit pages, in the right side column, you should see a “Sidebar Options” tab.

    Hannah

    #245357

    Hey Angelo,
    Try adding this to your custom css:

    @media (max-width: 1500px) {
    .kt-header-position-above, .second-nav-container {
    display: block;
    }
    #kad-mobile-banner {
    display: block;
    height: auto;
    }
    header#kad-header-menu {
    display: none;
    }
    }

    That will force a mobile menu below 1500px.
    Are you wanting the logo and menu to touch either side of the screen? If so, try adding this to your css:

    .kad-header-menu-inner.container {
        max-width: none;
        margin: 0;
    }

    Hope that helps!

    Hannah

    #245291

    To center the image change this css:

    .footercredits:before {
        content: url(/wp-content/uploads/ideas4now-website-banner-white_lg.png);
    }

    to this:

    .footercredits:before {
        content: url(/wp-content/uploads/ideas4now-website-banner-white_lg.png);
        margin: auto;
    }

    There isn’t a way to add a link to an image with only css. Sorry.

    Hannah

    #244960

    Hello,
    We ran a GTMetrix scan on http://www.great-eastern-sun.com and got a grade F for the following which includes one for virtue. Is this something you can help us with? Thanks!

    Enable compression for the following resources to reduce their transfer size by 81.9KiB (63% reduction).

    Compressing could save 73B (30% reduction).

    Compressing could save 81.0KiB (64% reduction).
    Compressing could save 533B (60% reduction).
    Compressing could save 364B (51% reduction).

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