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 - 1,461 through 1,480 (of 1,614 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: Crop to Squares

    #29343

    that totally worked, great! we have the portfolio now linked to the Visions page. One more question. Is it possible to have sections in the shop, or will it all be one page? if you take a look here, we have banners for the different sections, when you just click on Shop:
    http://www.mugwortdesigns.com/shop

    I don’t see a choose parent page option on the product entry page

    In forum: Virtue Theme

    In reply to: Firefox issue

    #29231

    I still can’t get anything I try to show me the issue…

    Gonna give you some css that you can try and then let me know if you see a change:

    test 1

    header#kad-banner:after {
    content: ' ';
    clear: both;
    display: table;
    }

    test 2:

    .navclass {
    padding-bottom: 1px;
    }

    Ben

    In forum: Virtue Theme
    #29007

    So you can use css like this for the first one. just have to change the image url to the correct image:

    #pg-2-1 #panel-2-1-0-0.widget_virtue_imgmenu_widget .infobanner:hover {
        background: url('http://www.samtim.fr/wp-content/uploads/2014/11/2012_03_28_5083-2.jpg') center center no-repeat !important;
        background-size:cover !important;
    }
    

    the second would be this:

    #pg-2-1 #panel-2-1-0-1.widget_virtue_imgmenu_widget .infobanner:hover {
        background: url('http://www.samtim.fr/wp-content/uploads/2014/11/2012_03_28_5083-2.jpg') center center no-repeat !important;
        background-size:cover !important;
    }

    Ben

    In forum: Virtue Theme
    #28785

    Hey guys,

    I was experiencing the same parallax banner issue and was able to fix it by doing the following:

    1) Click on “Edit Row”
    2) Select “Attributes”
    3) Input “wide-parallax” in the Row Class field

    Hope that helps.

    John

    In forum: Virtue Theme

    In reply to: Create a landing page

    #28080

    Sorry didn’t make it clear above. You do not (and really it’s easier if you don’t) need to make a template.

    Just go to pages, add new. Select the fullwidth page template.

    set your title to whatever you want. for an example lets say “landing page”

    then in the theme options > advanced settings. Add this css:

    .landing-page header.banner, .landing-page #containerfooter, .landing-page .page-header {
    display:none;
    }

    see how the title becomes the first class?

    Ben

    In forum: Virtue Theme

    In reply to: Create a landing page

    #28039

    Hey,
    You can just use the fullwidth page template, then a very small amount of css.

    Here is my example page: http://themes.kadencethemes.com/virtue-premium-3/no-header-test/

    Just using the page title, which becomes a css tag in the body I added this css:

    .no-header-test header.banner, .no-header-test #containerfooter, .no-header-test .page-header {
    display:none;
    }

    Ben

    #27355
    This reply has been marked as private.
    #27322

    1. what color do you want this line. do you want it touching the banner image or below?

    2. Yes that is correct. A price filter is only going to work on a page where the page loop is the product loop. Meaning it will only work on a category page. You can’t use a shortcode then have a filter.

    3. I assume you mean 1 box around all products…

    .kad_product_wrapper {
    padding-top: 10px;
    border: 2px solid #e6e6e6;
    }

    Ben

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

    In reply to: Flicker on down scroll

    #27136

    Please also have a look at the link of the top home slider. I set the link in slider settings for the whole slide to o-zen.de/#kad-banner.
    Link is active only on the right side of the slider. Can’t figure it out.

    In forum: Virtue Theme

    In reply to: Full with banner/logo

    #27079

    Hmm so what you want isn’t a built in option with this theme. Your combining a logo and a banner and a background.

    The only workaround I can think of is to add a transparent png image in your logo spot, make it 1140 by 150px.

    Then in the theme options > advanced styling: header background image upload your logo. Place it on center top and make sure you have repeat off.

    Then add this css:

    .headerclass {
    background-size: contain !important;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Full with banner/logo

    #27075

    Hi,
    I have put in a banner now for your view. http://electricalkettles.com/ It has with of 1280px I think.
    Maybe on other themes I just filled out the background color to to fit..
    Does “Background image for header” link to homepage as the title does? Recommended with?
    Peter

    #27060

    You can use this css:

    .page-id-1999 header#kad-banner {
    position: static !important;
    }

    Ben

    #27037

    Oh, that’s too bad. Is there any CSS solution we can make the banner sticky on mobile without using the shrink header option?

    #27026

    Hi again,
    This might be described somewhere but I’m a lazy 65 years old Swede.
    I now use Virtue on 4 sites, learning it on the way. I use it “naked” the red template as it is, I like the clean design.
    Now I want to make them look as before, ad a little color but mainly a Banner-logo. It is easily done in settings but I want it the full with of the screen.
    Regards,
    Peter P

    #26963

    You seem to have this css in your custom css box???

    #kad-banner {
    height: 90px !important;
    }

    You can’t add that if you want the shrink header option. Else it will break your site.

    Ben

    #26694

    Hey, Because of your border just need to switch the box sizing. Change your border css to this:

    header#kad-banner {
    BORDER-BOTTOM: 3px solid #80a93d;
    box-sizing: content-box;
    }

    Ben

    In forum: Virtue Theme
    #26646

    Hello! I would like to add a new widget area (dynamic sidebar) into Virtue Premium Theme. I need a widget at the bottom of the post for placing an advertising banner.

    Example of an advertising banner at the bottom of the post

    Example of an advertising banner on screenshot

    My website

    I’m going to modify child theme according to the instructions
    Where exactly can I implement the code?

    I mean the following code:
    for functions.php

    function tq_widgets_init() {
    register_sidebar( array(
    'name' => 'Content bottom',
    'id' => 'content-bottom-1',
    'description' => 'Area under the content',
    'before_widget' => '<div>',
    'after_widget' => '</div>',
    'before_title' => '<h3 class="widget-content-bottom">',
    'after_title' => '</h3>',
    ) );
    }
    add_action( 'widgets_init', 'tq_widgets_init' );

    for sidebar.php

    <?php if ( is_active_sidebar( 'content-bottom-1' ) ) : ?>
    <div class="content-bottom-1" role="complementary">
    <?php dynamic_sidebar( 'content-bottom-1' ); ?>
    </div>
    <?php endif; // end content-bottom widget area ?>

    for content-single.php

    <?php get_sidebar('content-bottom-1'); ?>

    #26409

    Hmm, Need to fix that in the next update too. You can use this css for now:

    body #kad-banner #logo .kad-retina-logo {
    margin: 0 auto;
    }

    Ben

    #26231

    The theme would crop your image to the size you set in the portfolio post “Max Image/Slider Height” and “Max Image/Slider Width”

    As long as your image is at least the size set it will be that size in your banner. Is that what your wanting?

    PS. Using jetpacks photon does remove the themes ability to crop the image.

    Ben

Viewing 20 results - 1,461 through 1,480 (of 1,614 total)