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: Crop to Squares
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/shopI don’t see a choose parent page option on the product entry page
In forum: Virtue ThemeIn reply to: Firefox issue
January 30, 2015 at 2:50 pm #29231I 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 ThemeIn reply to: Change image on rollover
January 29, 2015 at 11:04 am #29007So 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 ThemeIn reply to: Space Allocation slider
In forum: Virtue ThemeIn reply to: Create a landing page
January 20, 2015 at 4:27 pm #28080Sorry 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 ThemeIn reply to: Create a landing page
January 20, 2015 at 11:32 am #28039Hey,
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
In forum: Virtue ThemeIn reply to: Boxes/Lines or edges & Icon questions
In forum: Virtue ThemeIn reply to: Boxes/Lines or edges & Icon questions
January 11, 2015 at 4:16 pm #273221. 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
In forum: Virtue ThemeIn reply to: Boxes/Lines or edges & Icon questions
In forum: Virtue ThemeIn reply to: Flicker on down scroll
In forum: Virtue ThemeIn reply to: Full with banner/logo
January 9, 2015 at 12:04 pm #27079Hmm 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 ThemeIn reply to: Full with banner/logo
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?
PeterIn forum: Virtue ThemeIn reply to: Remove sticky header on specific page
January 9, 2015 at 11:05 am #27060You can use this css:
.page-id-1999 header#kad-banner { position: static !important; }Ben
In forum: Virtue ThemeIn reply to: Make logo appear only after scrolling some few px
January 9, 2015 at 10:11 am #27037Oh, that’s too bad. Is there any CSS solution we can make the banner sticky on mobile without using the shrink header option?
In forum: Virtue ThemeTopic: Full with banner/logo
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 PIn forum: Virtue ThemeIn reply to: Make logo appear only after scrolling some few px
January 8, 2015 at 8:04 pm #26963You 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
In forum: Virtue ThemeIn reply to: White space above slider after scrolling down.
January 5, 2015 at 9:17 pm #26694Hey, 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 ThemeTopic: new widget area
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 *Login to see link
Where exactly can I implement the code?I mean the following code:
for functions.phpfunction 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'); ?>
In forum: Virtue ThemeIn reply to: Bug with @2x Logo & Center Logo w/ Menus Header?
December 30, 2014 at 10:56 pm #26409Hmm, 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
In forum: Virtue ThemeIn reply to: location of the featured image in portfolio posts
December 28, 2014 at 11:02 pm #26231The 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
-
AuthorSearch Results


