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'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Change header image by category
July 14, 2017 at 12:01 pm #151903Hey,
You can’t change the logo this way, you would have to edit the templates/header.php to do it that way. What I suggest you do instead of such a major code change is to not use the logo as a banner and instead add your banner through the below header shortcode input. Or header widget area. This would allow you to use a widget visibility plugin to control when certain widgets show.It’s always difficult to offer support and suggestions without a link. Thus its always best to follow support guidelines and post a link to your site.
Ben
In forum: Ascend ThemeIn reply to: Trouble with the kadence slider
July 11, 2017 at 10:58 pm #151512ok, check out the slider and you can add this css if you want to remove the mobile menu until scroll:
#kad-mobile-banner { opacity: 0; } .is-sticky #kad-mobile-banner { opacity: 1; }Ben
In forum: Virtue ThemeJuly 11, 2017 at 5:38 pm #151503.kt-header-position-above { display: none; } #kad-header-menu-sticky-wrapper { height: 0 !important; } .second-nav-container { display: none; } #kad-mobile-banner { display: block; height: auto; }Ben
In forum: Ascend ThemeIn reply to: Create Header Marketing Banner
In forum: Ascend ThemeIn forum: Virtue ThemeIn reply to: Ipad Menu
July 5, 2017 at 5:39 pm #150794Here is the complete css:
@media (min-width: 767px) and (max-width: 992px), (device-width: 800px), (device-width: 768px){ .kad-header-left { width: 100%; float:left; } .kad-header-widget { display:none; } .kad-header-right { padding: 0; } #kad-banner > .container > .row:first-child { width: 35%; float: left; margin: 0; } #kad-banner > .container > .row { width: 65%; float: left; margin: 0; } #mobile-nav-trigger { display:none; } #nav-main ul.sf-menu a { padding: 10px 8px; } header #nav-main { margin-top:60px } #nav-second ul.sf-menu { display: block; } #nav-main ul.sf-menu, .nav-main ul.sf-menu { display: block !important; } html > body > div#wrapper > header#kad-banner > div#cat_nav > div.container > nav>ul > li > a { width: 125px !important; } #nav-second { float: right; margin-top: -44px; } }And here is the screen shot:
In forum: Virtue ThemeIn reply to: Ipad Menu
July 4, 2017 at 4:57 pm #150700To make this clear, I don’t suggest you do this. Using a non-touch designed menu specifically for touch devices doesn’t provide the best experience for touch users.
You can add the css if you want it:
@media (min-width: 767px) and (max-width: 992px){ .kad-header-left { width: 100%; float:left; } .kad-header-widget { display:none; } .kad-header-right { padding: 0; } #kad-banner > .container > .row:first-child { width: 35%; float: left; margin: 0; } #kad-banner > .container > .row { width: 65%; float: left; margin: 0; } #mobile-nav-trigger { display:none; } #nav-main ul.sf-menu a { padding: 10px 8px; } header #nav-main { margin-top:60px } }Ben
In forum: Ascend ThemeTopic: Mobile header icons color
Hi dear friends!
I found a small problem.
I needed to change the main menu background color from gray to white. Then I add this CSS:
@media (min-width: 992px){
.headerclass, .stickyheader.trans-header #kad-banner {
background: #fff;
}}
@media (min-width: 992px){
div.sliderclass.kt_desktop_slider.clearfix.home-sliderclass{
padding-top: 136px
}}
@media (max-width: 992px){
div.sliderclass.kt_desktop_slider.clearfix.home-sliderclass{
padding-top: 61px
}}After that mobile menu icons change after scroll from white to gray, but I don’t want that.
I found out that their color depends on the color from Primary Menu Font. It would not be better to depend from Mobile Menu Font?
How I can solve that problem?Sorry for my poor english.
Thank You for your support.Kirill.
SiteIn forum: Virtue ThemeIn reply to: Video background not showing in Mobile
June 29, 2017 at 10:37 am #150279Hi,
Used Page builder – Layout (mono)Used CSS to remove top padding —
.home header#kad-banner {
display: none;
}
.home .contentclass.hfeed {
padding-top: 0;
}Charanvir Singh
In forum: Virtue ThemeTopic: Background logo
Hey Team,
An unusual request from a client for our next site….They are tired of sites that begin with a banner and want to try something different. They require a background image on the right hand side of every page which will sit behind any text, page images etc. Almost like a watermark, I guess.
The image will be their logo and it is not yet clear whether this should stretch the entire height of the screen or just the content area.
I’m unsure of my options – is this something I should explore with Virtue or is this a dangerous rabbit hole to go down?
Many thanks,
Phil.In forum: Reply To:One more screen shot:
https://c1.staticflickr.com/5/4262/35441301351_9a39a6abde.jpgThis is how it’s showing up on the preview post and I’m trying to change the just the thumbnails of this gallery to include the banner with the text. You can see in the thumbnail it’s cutting the words off.
In forum: Virtue ThemeIn reply to: Top Bar height problem
In forum: Virtue ThemeIn reply to: Top Bar height problem
This reply has been marked as private.June 27, 2017 at 8:39 am #149975In forum: Virtue ThemeIn reply to: Remove upper padding – Home
I had the same issue.
I used the recommended solution of:
.home header#kad-banner {
display: none;
}That removed the site title and shrunk the the top padding, but it is still leaving about 1/4 white padding stripe on top.
Is there some other setting that has to be changed to 0?In forum: Virtue ThemeIn reply to: Remove upper padding – Home
Hey,
Perhaps it would work better for you to assign the slider that you’re using in Theme Options> Home Slider?
If not, this CSS should remove the white from the top of the page:
.home header#kad-banner { display: none; }Just post the code in Theme Options> Advanced Settings and the space should be gone from your home page.
-Kevin
In forum: Ascend ThemeIn reply to: Overlapping sidebar content
If you find any issues in mobile, you can wrap the CSS in a media query like this in order to only effect desktop:
@media (min-width: 992px) { .bundled_product_summary { padding-left: 35px !important; } }The sale banner is actually output by the theme. You can set the text in Theme Options> Language Settings. You can hide it with CSS, but I would think that it’s worth leaving there so that customers have an indication that the product is on sale.
This CSS will hide the Sale banner:
span.onsale { display: none; }-Kevin
In forum: Ascend ThemeIn reply to: Overlapping sidebar content
Yes that does work! Wondering how that might effect mobile. But in any case, so far so good. Thanks again, Kevin. I appreciate it. By the way, something else I’m trying to do on that plugin is change or eliminate the “Sale” banner at the top of the image field. The client wants it to read “Best Value” or have it gone. I’m assuming that’s somewhere deep in the plugin programming and have asked Woo about it. But do you know otherwise?
In forum: Ascend ThemeIn reply to: MOBILE MENU
June 20, 2017 at 4:53 pm #149454ok, go into your theme options > header footer scripts. Add this to your footer scripts:
<script type="text/javascript"> jQuery(document).ready(function ($) { var offset = 0; $('#kad-header-menu, #kad-mobile-banner, #kad-vertical-menu, .outside-second, .kt-mobile-menu').localScroll({ offset: -(offset), onBefore: function(target, settings) { var magnificPopup = $.magnificPopup.instance; magnificPopup.close(); }, }); }); </script>Ben
In forum: Virtue ThemeTopic: Banner Rotator
In forum: Virtue ThemeIn reply to: Space between Header and Secondary Menu
Ok, I changed your css to this:
@media (min-width: 992px) { #panel-w59414f8753b17-0-1-0> .panel-widget-style { padding-bottom: 0 !important; } div#kad-banner-sticky-wrapper, header#kad-banner { max-height: 193px !important; } }Let me know if that works for you!
Hannah
-
AuthorSearch Results


