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: Banner Full Width matching body
hi again. please help me with similar, I am trying to center my banner as well. http://www.africatrademakers.com. i have tried copying and pasting the code you gave Derek above. so far my css edit box looks like this…is there something here that is stopping it from centering after I added the code?
also what dimensions jpeg would work best for the site wide banner? i need the banner as wide as the slider.
/*
.kad-header-widget .virtue_social_widget a i {
font-size: 28px;
line-height: 30px;
}
*/
@media (min-width: 992px) {
.kad-header-widget {
padding-left: 500px;
}
}.home .kad-slider .kad-slide {
background-size: contain !important;
}#nav-second ul.sf-menu ul li a {
font-size: 15px;
}#nav-second ul.sf-menu>li>a {
padding: 20px;
}.ktslider_home_hidetop {
margin-top: 5px;
}.virtue_banner {
margin: 0 -15px;
}In forum: Virtue ThemeIn reply to: Separating the topbar from the header
September 26, 2014 at 10:35 am #18499So you can add this css to your custom css box in the theme options > advanced settings:
#kad-banner .sticky-wrapper > .container { margin: 0 auto; width: 100%; padding: 0; z-index: 1000; background: #fff; } #kad-banner .sticky-wrapper > .container > .row { max-width: 1170px; margin: 0 auto; }And you can add this to a footer text widget.
<script type="text/javascript"> jQuery(document).ready(function ($) { if($(window).width() > 992 ){ var topOffest = $('body').hasClass('admin-bar') ? 32 : 0; $('#kad-banner > .container').sticky({topSpacing:topOffest});}}); </script>Ben
In forum: Virtue ThemeIn reply to: Banner Full Width matching body
September 21, 2014 at 8:42 am #18070.virtue_banner { margin: 0 -15px; }for the menu you can use this:
#kad-header-right { padding: 0; }Just not that the primary menu is set to be centered so it will not left align or fill available space. If you want that then use the secondary menu not the primary.
Ben
In forum: Virtue ThemeHello,
I need my banner picture to be full width with in the container.
I have the box lay out.
I’d also like the primary menu to be full width if that is possible.
There seems to be a 15px margin on each side of the banner and primary menu.
I tried several css codes to no avail.
I tried the one where I entered -15px margin and didn’t work.
Website is http://www.spartanhomeservices.com
Thanks, Derek
In forum: Virtue ThemeIn reply to: Help with image sizes and layout
ok I’m back working on site. is it possible to have a banner on the header widget? and can this banner or widget change depending on what page of the site one is on?
I would like to run small ads there and will remove the paypal logo, http://www.africatrademakers.com. i would need to change banner(s) periodically.In forum: Virtue ThemeIn reply to: super wide header in virtue theme premium
In forum: Virtue ThemeIn reply to: Modification with menu
That fixes most of the stuffs i was hoping. But the problem now is the secondary menu also shows up behind the main menu in home page. Thus making the secondary menu not clickable. link: http://www.apexworld.com.au
I tried some css but gave up fixing it. I want the secondary menu to put all the way down just below the revolution slider and above the search form with some padding to it. But only in home page. Rest of the page are perfect. Here is the css i tried with no luck..home .navclass {
margin: 70px 0px 70px;
}When i use this, the white background of the i don’t know if its the main menu banner or secondary menu banner also stretch making it look partial white or ugly.
So, How can i move the secondary menu just below the revolution slider i.e. above the search box but it has to be only in home page. And not to show at all the secondary menu on small to medium screen sizes.?
Your help is greatly appreciated. Thanks for the support Ben.
Thanks
Bhupen T
In forum: Virtue ThemeIn reply to: Modification with menu
September 7, 2014 at 10:41 pm #16904ok try this, first remove your margins on the slider. Second add this css:
@media (min-width: 767px) { .home .kad-header-right { width:100%; float:right; right: 0; position: absolute; height: 122px; } .home .kad-header-right #nav-main { margin:10px 0 30px 0; } #kad-banner .container { position:relative; } .home .kad-header-left { display:none; } .home .kad-topbar-left { width: 70%; } .home .kad-topbar-right { width: 30%; } #mobile-nav-trigger { display: none; } #nav-main ul.sf-menu { display:block; } }Ben
In forum: Virtue ThemeIn reply to: Adding a line under title and menu
September 5, 2014 at 1:31 pm #16729You can use this:
#kad-banner > .container:after { content: ''; background: #000; height: 1px; width: 100%; margin-top: -8px; clear: none; display: block; margin-bottom: 8px; }if you want to loose the lines around the page title add this:
.page-header { border:0; }In forum: Virtue ThemeIn reply to: Adding a line under title and menu
September 5, 2014 at 1:15 pm #16725Here you go, remove the other, this should be more aligned for you:
.home #kad-banner > .container:after { content: ''; background: #000; height: 1px; width: 100%; margin-top: -8px; clear: none; display: block; margin-bottom: 8px; }Ben
In forum: Virtue ThemeIn reply to: Adding a line under title and menu
September 4, 2014 at 2:01 pm #16601Just on the home page? add this to your custom css box in the theme options:
.home #kad-banner > .container{ border-bottom: 1px solid #444; }Ben
In forum: Virtue ThemeIn reply to: Home Page Flex Slider – shadow
September 3, 2014 at 2:53 pm #16482That doesn’t have anything to do with your shaddow… I see what you did, you’ve added a height !important for IE8 which is breaking the layout… change to:
@media all { #kad-banner-sticky-wrapper, #kad-banner { height: auto !important; } }Ben
In forum: Virtue ThemeSeptember 2, 2014 at 11:02 am #163871. It’s a little tricky to do, and with a shrink header I can’t say I recommend this but here you go add all this css to your custom css box in the theme options:
body.single-post.wide #wrapper.container { width: 100% !important; padding: 0!important; box-sizing: content-box; } body.single-post.stickyheader .is-sticky #kad-banner { width: auto; left: auto; } @media (min-width: 768px) { body.single-post.wide #wrapper.container { width: 750px; !important; padding: 0 15px !important; } } @media (min-width: 992px) { body.single-post.wide #wrapper.container { width: 970px; !important; padding: 0 15px !important; } } @media (min-width: 1200px) { body.single-post.wide #wrapper.container { width: 1170px !important; padding: 0 15px !important; } }2.
.kad-sidebar {
border-left: 1px solid #aaa;
}3. You can set the hover options in the theme options > menu settings.
If you want a border here is the css:#nav-main ul.sf-menu > li { border-right: 1px solid #eee; } #nav-main ul.sf-menu > li:last-child{ border: none; }Ben
In forum: Virtue ThemeAugust 30, 2014 at 10:07 pm #16270Hey,
So portfolio and image menu are used for different functions the image menu was designed to have text showing on top of the image, The image is just a background for the text, see example here: http://themes.kadencethemes.com/virtue-premium-3/For what you want you would be better off adding your images through pagebuilder using the virtue: image widget, which would just show your image as is.
You can add this css to force the background image to stay within the container div. But it will just mean that the hover effect goes above and blow it.
.infobanner { background-size: contain !important; }Ben
In forum: Virtue ThemeIn reply to: Sticky Header Lag on Mobile
August 28, 2014 at 12:53 am #16118ok I see, change to this:
@media (max-width: 992px) { .stickyheader #kad-banner { width: 100%; z-index: 1120; left: 0; position: fixed !important; } }Ben
In forum: Virtue ThemeIn reply to: Sticky Header Lag on Mobile
August 28, 2014 at 12:46 am #16115@media (max-width: 992px) { .stickyheader #kad-banner { width: 100%; left: 0; position: fixed !important; }Try adding that in your custom css box in the theme options > advanced settings.
Ben
In forum: Virtue ThemeTopic: hide mobile menu icon
I add in header banner area right revolution slider with phone number and address. But when i change window size and must see mobile menu icon, i don’t. The icon is hide under address slider. I change height of slider, but it dont work, i still not see icon. How resolve this?
In forum: Virtue ThemeIn reply to: Virtue Google maps widgets not showing
In forum: Virtue ThemeIn reply to: Retina Logo Moving
August 5, 2014 at 8:26 pm #14605Try adding this css to your custom css in the theme options > advanced settings:
body #kad-banner #logo .kad-retina-logo { margin: 0 auto; }Ben
In forum: Virtue ThemeTopic: Hide logo on home page
Hi,
I would like to hide the logo on the home page as I already have it included in my banner – which is above the header.
http://www.runivore.com. Is there any way to do that?Thanks,
Tom -
AuthorSearch Results


