Forum Replies Created
-
Author
-
RaduModerator
Hi,
Hide profile status update under avatar
COPY CODE#item-header-content #latest-update { display: none; }
Increase font size on groups
COPY CODE.buddypress div#item-header div#item-header-content #latest-update, .buddypress div#item-header div#item-header-content p:first-child { font-size:1.2em; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
I’ve tried to reproduce all that scenarios but i don’t receive any errors,
In few cases that error from theme panel when you try to save settings is caused by php memory limit
So, try to increase php memory limit to 256 or 512
COPY CODE/** Memory Limit */ define('WP_MEMORY_LIMIT', '512M');
https://wordpress.org/support/topic/error-increase-memory-limit-to-64-mb
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
If you are talking about buddypress subnav profile icons add this css
COPY CODE#buddypress div#item-nav ul a:before {display:none !important;} #buddypress div#item-nav ul li a span { position: absolute; top: 2px; left: 28%; z-index: 12; }
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You have right
I’ve made some tests and i will provide a temporary solution untlil next update when we include this fix on the theme.
Please add this css snippet to Wp-admin -> Theme options -> General settings -> Quick css
COPY CODEbody.navbar-transparent:not(.kleo-navbar-fixed) #header { position: absolute; width: 100%; }
Sorry for inconvenience
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Use this CSS by adding this CSS to Wp-Admin -> Theme Options -> General Settings -> Quick CSS
COPY CODEul.submenu-inner.has-notif li {padding:2px 10px !important;}
Let me know if is ok
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Use this shortcode
COPY CODE[kleo_search_form context="members,groups,post,page,forum,product,portfolio"]
This shortcode will allows you to search on members,groups,post,page,forum,product,portfolio.
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorSure,
COPY CODEhttps://swingrs.nl/wp-content/themes/sweetdate/assets/styles/font-awesome.min.css?ver=20150630
Yesterday i added on your header.php before head tag closes the resource from seventhqeen.com
Delete that line and then copy the header.php from sweetdate to sweetdate-child
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
I really don’t figure out what’s the problem but you can patch like this : Add the below function to kleo-child/functions.php
COPY CODEfunction patch_geodirectory-navigation_panel_css(){ echo "<style>\n"; echo '.chosen-container-multi .chosen-choices { min-width: 400px; }'; echo "\n</style>"; } add_action( 'admin_print_styles', 'patch_geodirectory-navigation_panel_css' ,90);
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
This is not a solution to hide plugins update notifications. In future your site might be vulnerable to hacker attacks if you don’t keep your plugins updated.
But anyways you can use this function to set display none for that div with notifications.
Add this functions in kleo-child/functions.php
COPY CODEfunction remove_tgmpa_notifications(){ echo "<style>\n"; echo '#setting-error-tgmpa { clear: both;display: none; }'; echo "\n</style>"; } add_action( 'admin_print_styles', 'remove_tgmpa_notifications' ,90);
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
The problem was caused by “….” at line 161…
COPY CODE<?php /** * The template Masonry blog item * * @package WordPress * @subpackage Kleo * @since Kleo 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(array("post-item")); ?>> <div class="post-content animated animate-when-almost-visible el-appear"> <?php global $kleo_config; $kleo_post_format = get_post_format(); /* For portfolio post type */ if ( get_post_type() == 'portfolio' ) { if ( get_cfield( 'media_type' ) && get_cfield( 'media_type' ) != '' ) { $media_type = get_cfield( 'media_type' ); switch ( $media_type ) { case 'slider': $kleo_post_format = 'gallery'; break; case 'video': case 'hosted_video': $kleo_post_format = 'video'; break; } } } switch ( $kleo_post_format ) { case 'video': //oEmbed video // **************** DEBUT MODIF HD ***************************** // init $video = get_cfield( 'embed' ); $video = get_cfield('video_url'); // ****************** FIN MODIF HD ***************************** // video bg self hosted $bg_video_args = array(); $k_video = ''; if (get_cfield( 'video_mp4' ) ) { $bg_video_args['mp4'] = get_cfield( 'video_mp4' ); } if (get_cfield( 'video_ogv' ) ) { $bg_video_args['ogv'] = get_cfield( 'video_ogv' ); } if (get_cfield( 'video_webm' ) ) { $bg_video_args['webm'] = get_cfield( 'video_webm' ); } if ( !empty( $bg_video_args ) ) { $attr_strings = array( 'preload="none"' ); if (get_cfield( 'video_poster' ) ) { $attr_strings[] = 'poster="' . get_cfield( 'video_poster' ) . '"'; } $k_video .= '<div class="kleo-video-wrap"><video ' . join( ' ', $attr_strings ) . ' controls="controls" class="kleo-video" style="width: 100%; height: 100%;">'; $source = '<source type="%s" src="%s" />'; foreach ( $bg_video_args as $video_type => $video_src ) { $video_type = wp_check_filetype( $video_src, wp_get_mime_types() ); $k_video .= sprintf( $source, $video_type['type'], esc_url( $video_src ) ); } $k_video .= '</video></div>'; echo $k_video; } // oEmbed elseif ( !empty( $video ) ) { global $wp_embed; echo apply_filters( 'kleo_oembed_video', $video ); } break; case 'audio': $audio = get_cfield('audio'); if (!empty($audio)) { ?> <div class="post-audio"> <audio preload="none" class="kleo-audio" id="audio_<?php the_id();?>" style="width:100%;" src="<?php echo $audio; ?>"></audio> </div> <?php } break; case 'gallery': $slides = get_cfield('slider'); echo '<div class="kleo-banner-slider">' .'<div class="kleo-banner-items" data-speed="2000">'; if ( $slides ) { foreach( $slides as $slide ) { if ( $slide ) { $image = aq_resize( $slide, $kleo_config['post_gallery_img_width'], $kleo_config['post_gallery_img_height'], true, true, true ); //small hack for non-hosted images if (! $image ) { $image = $slide; } echo '<article> <a href="'. $slide .'" data-rel="modalPhoto[inner-gallery]"> <img src="'.$image.'" alt="'. get_the_title() .'">' . kleo_get_img_overlay() . '</a> </article>'; } } } echo '</div>' . '<a href="#" class="kleo-banner-prev"><i class="icon-angle-left"></i></a>' . '<a href="#" class="kleo-banner-next"><i class="icon-angle-right"></i></a>' . '<div class="kleo-banner-features-pager carousel-pager"></div>' .'</div>'; break; case 'quote': case 'link': // ******************* DEBUT MODIF HD ***************************** $image = get_cfield('img-site'); // J'ai enlevé une partie du code initial echo '<a href="'. get_permalink() .'" class="element-wrap" rel="nofollow">' . '<img src="' . $image . '"/>' . kleo_get_img_overlay() . '</a>'; // ******************* FIN MODIF HD ***************************** /* echo '<div class="inner-content">' . get_the_content() . '</div><!--end inner-content-->'; break; */ case 'status': echo '<div class="inner-content">' . get_the_content() . '</div><!--end inner-content-->'; break; case 'image': default: if ( kleo_get_post_thumbnail_url() != '' ) { echo '<div class="post-image">'; // ******************* DEBUT MODIF HD ***************************** $img_url = kleo_get_post_thumbnail_url(); $image = get_cfield('image'); /* $image = aq_resize( $img_url, $kleo_config['post_gallery_img_width'], null, true, true, true ); */ // ******************* FIN MODIF HD ***************************** if( ! $image ) { $image = $img_url; } echo '<a href="'. get_permalink() .'" class="element-wrap">' . '<img src="' . $image . '" alt="'. get_the_title() .'">' . kleo_get_img_overlay() . '</a>'; echo '</div><!--end post-image-->'; } break; } ?> <?php if ($kleo_post_format != 'quote' && $kleo_post_format != 'link' ) : ?> <div class="post-header"> <?php if ($kleo_post_format != 'status'): ?> <h3 class="post-title entry-title"><a href="<?php the_permalink();?>"><?php the_title();?></a></h3> <?php endif; ?> <span class="post-meta"> <?php kleo_entry_meta();?> </span> </div><!--end post-header--> <?php if ( $kleo_post_format != 'status' ): ?> <?php if (kleo_excerpt() != '<p></p>') : ?> <div class="post-info"> <div class="entry-summary"> <?php echo kleo_excerpt(); ?> </div><!-- .entry-summary --> </div><!--end post-info--> <?php endif; ?> <?php endif; ?> <?php endif; ?> <div class="post-footer"> <small> <?php do_action('kleo_post_footer');?> <a href="<?php the_permalink();?>"><span class="muted pull-right"><?php _e( "Read more","kleo_framework" );?></span></a> </small> </div><!--end post-footer--> </div><!--end post-content--> </article>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You can do this by adding the below code to your kleo-child/functions.php
COPY CODEfunction kleo_adding_custom_scripts() { wp_register_script('my_script_name', get_stylesheet_directory_uri() . '/js/amazing_script.js', array('jquery'),'1.1', true); wp_enqueue_script('my_script_name'); } add_action( 'wp_enqueue_scripts', 'kleo_adding_custom_scripts' );
Then put your script in this location wp-content/themes/kleo-child/js/ with name amazing_script.js
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Replace the code from above with this
COPY CODEadd_shortcode('custom_kleo_social_activity_share', 'custom_kleo_social_activity_share'); function custom_kleo_social_activity_share() { ?> <span class="kleo-social-activity-share <?php echo bp_get_activity_type(); ?>"> <a class="kleo-social-activity-share-item facebook" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="https://www.facebook.com/sharer/sharer.php?t=<?php echo bp_get_activity_feed_item_title(); ?>&u=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-facebook"></i></a> <a class="kleo-social-activity-share-item twitter" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="http://twitter.com/share?text=<?php echo bp_get_activity_feed_item_title(); ?>&url=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-twitter"></i></a> <a class="kleo-social-activity-share-item google" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="https://plus.google.com/share?url=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-gplus"></i></a> </span> <?php }
Then use this code [custom_kleo_social_activity_share] where you want to icons to appear.
Let me know if it works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi
Css path to style only single job pages
COPY CODEbody.single-job_listing {} body.single-job_listing .header-color.social-header {display:none;}
CSs path to style only single events pages
COPY CODEbody.single-event {} body.single-event .header-color.social-header {display:none;}
Best Regards
Radu
CSs path to style only single member pages
COPY CODEbody.members .header-color.social-header {display:none;}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 11, 2015 at 20:02 in reply to: Is there a way to make the width of tabs responsive? #77229RaduModeratorBy using this CSS modifications will be applied only for this page, (page with id )
COPY CODEbody.page-id-19038 li.vc_tta-tab { width: 25%; padding:0 !important; margin: 0 !important; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 11, 2015 at 20:01 in reply to: Is there a way to make the width of tabs responsive? #77228RaduModeratorHi,
Use this css add it to Wp-Admin -> Theme Options -> General Settings -> Quick CSS
COPY CODEli.vc_tta-tab { width: 25%; padding:0 !important; margin: 0 !important; }
Let me know if its ok
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
USe this css, i see that the row from vc have background assigned you can set the background from vc backend of your homepage or use this css
COPY CODEbody.page-id-816 .main-color {background-image:url(http://www.keenthemes.com/preview/metronic/theme/assets/global/plugins/jcrop/demos/demo_files/image1.jpg);}
You can add the search form on member directory by navigating to WP-Admin -> Users -> Profile Search -> Select your form -> From right site -> Add to directory set YES.
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add code to your function.php from kleo-child
COPY CODEadd_shortcode('custom_kleo_social_activity_share', 'custom_kleo_social_activity_share'); function custom_kleo_social_activity_share() { ?> <span class="kleo-social-activity-share <?php echo bp_get_activity_type(); ?>"> <a class="kleo-social-activity-share-item facebook" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="https://www.facebook.com/sharer/sharer.php?t=<?php echo bp_get_activity_feed_item_title(); ?>&u=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-facebook"></i></a> <a class="kleo-social-activity-share-item twitter" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="http://twitter.com/share?text=<?php echo bp_get_activity_feed_item_title(); ?>&url=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-twitter"></i></a> <a class="kleo-social-activity-share-item google" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="https://plus.google.com/share?url=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-gplus"></i></a> <a class="kleo-social-activity-share-item mail" href="mailto:?body=<?php echo bp_get_activity_feed_item_title(); ?> <?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-mail"></i></a> </span> <?php }
Then use this code [custom_kleo_social_activity_share] where you want to icons to appear.
Best Regards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
If you want to add a simple thing at the bottom of your post use this function.
COPY CODEfunction CustomKleoAddContentAfterPost( $content ) { if( is_single() ) { $shortcode = '<a href="http://google.com"><img src="http://angierfellowship.dnsalias.com/wp-content/uploads/2014/03/img-600x390.gif"></a>'; $content .= '<h4>My Custom content</h4>'; $content .= $shortcode; } return $content; } add_filter('the_content', 'CustomKleoAddContentAfterPost');
If you want to make your custom post template just copy the original template from parent theme
example :
wp-content/themes/kleo/content-image.php
wp-content/themes/kleo-child/content-image.php
Note the Kleo Child needs to be active
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
See attachment for the issue with disappearing text.
If you want to press the button and then to scroll down look here : https://archived.seventhqueen.com/forums/topic/smooth-anchor#post-65836 ( read entire topic )
Regarding the ajax error try to put this in .htaccess
COPY CODE<IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule>
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.RaduModeratorHi,
The get_cfield function it’s part of ACF Plugin kleo uses the get_cfield function so , try like this
COPY CODEcase 'video': //oEmbed video // **************** DEBUT MODIF HD ***************************** // init $video = get_cfield( 'embed' ); $video = get_cfield('video_url'); // ****************** FIN MODIF HD ***************************** case 'link': // ******************* DEBUT MODIF HD ***************************** $image = get_cfield('img-site'); echo '<a href="'. get_permalink() .'" class="element-wrap">' . '<img src="' . $image . '">' . kleo_get_img_overlay() . '</a>'; .... // ******************* FIN MODIF HD ***************************** /* echo '<div class="inner-content">' . get_the_content() . '</div><!--end inner-content-->'; break; */ .... case 'image': default: if ( kleo_get_post_thumbnail_url() != '' ) { echo '<div class="post-image">'; // ******************* DEBUT MODIF HD ***************************** $img_url = kleo_get_post_thumbnail_url(); $image = get_cfield('image'); /* $image = aq_resize( $img_url, $kleo_config['post_gallery_img_width'], null, true, true, true ); */ // ******************* FIN MODIF HD ***************************** ....
REgards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
I think you receive the blank page because of this function :
COPY CODEadd_filter( 'the_content', 'wc_custom_thankyou' ); function wc_custom_thankyou( $content ) { // Check if is the correct page if ( ! is_page(3) ) { return $content; } // check if the order ID exists if ( ! isset( $_GET['order'] ) ) { return $content; } // intval() ensures that we use an integer value for the order ID $order = wc_get_order( intval( $_GET['order'] ) ); ob_start(); // Check that the order is valid if ( ! $order ) { // The order can't be returned by WooCommerce - Just say thank you ?><p><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you. Your order has been received.', 'woocommerce' ), null ); ?></p><?php } else { if ( $order->has_status( 'failed' ) ) { // Order failed - Print error messages and ask to pay again /** * @hooked wc_custom_thankyou_failed - 10 */ do_action( 'wc_custom_thankyou_failed', $order ); } else { // The order is successfull - print the complete order review /** * @hooked wc_custom_thankyou_header - 10 * @hooked wc_custom_thankyou_table - 20 * @hooked wc_custom_thankyou_customer_details - 30 */ do_action( 'wc_custom_thankyou_successful', $order ); } } $content .= ob_get_contents(); ob_end_clean(); return $content; }
Replace the existing function from functions.php with the function above, also replace id 3 with your thank you id page.
COPY CODE// Check if is the correct page if ( ! is_page(3) ) {
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorYes the CSS it’s ok for hiding that elements but you can use this css path to match only the elements where that plugin it’s active.
COPY CODE.article-content #buddypress .rtm-gallery-title {display: none; !important} .article-content #buddypress .author-box {display: none; !important} .article-content #buddypress .pagination.no-ajax {display: none; !important} .article-content #buddypress .date {display: none; !important}
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Try with this CSS
COPY CODEbody.page-id-816 { background-image: url("http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif"); background-repeat: repeat; }
Replace “http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif” with your image url .
REgards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Use this css by adding it in Wp-Aadmin -> Theme Options -> General Settings -> Quick CSS
COPY CODE@media screen and (max-width: 400px) { .navbar-header .logo { float:left; } }
Best REgards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Use this css
COPY CODEbody.woocommerce section.container-wrap.main-color { background-color: #FFF !important; }
Add this css to WP-Admin -> Theme Options -> General Settings -> Quick CSS
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Use this css
COPY CODEbody.woocommerce section.container-wrap.main-color { background-color: #FFF !important; }
Add this css to WP-Admin -> Theme Options -> General Settings -> Quick CSS
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Try to use this css
COPY CODE.kleo-transform .animated.animate-when-visible, .kleo-transform .animated.animate-when-almost-visible, .cul { opacity: 1 !important; }
Add this CSS to Theme Options -> General Settings -> Quick CSS.
Let me know if this solve the visibility issue.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Download the attachment, unzip the file, upload this file ( archive.php ) to kleo child root directory.
Then open the archive.php at line 59 at variable
COPY CODE$adcode = '<div style="width:728px; height:90px; background-color:red; position: relative;"> <img src="http://northdelawhere.happeningmag.com/wp-content/uploads/728x90-example-banner.jpg"></div>';
replace the code with your ad code, you need to place ad code inside ”.
$adcode = ‘PASTE HERE CODE’;
That’s all.
The code add after each two posts the ad
Regards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.RaduModeratorHi,
Use this CSS by adding the snippet from above to wp-admin -> Theme Options -> General Settings -> Quick CSS
COPY CODEbody.home .wpb_row, .wpb_content_element, ul.wpb_thumbnails-fluid > li, .last_toggle_el_margin, .wpb_button { margin-bottom: 0px !important; }
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You can do it like this, add this css to Wp-Admin -> Theme Options -> General Settings -> Quick CSS
COPY CODEdiv#footer { display: none; }
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Try like this :
COPY CODEh4.widget-title { text-align: center; color: red; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorIn case of page members you can use like this
COPY CODEbody.members
Please give me or tell me what plugin generate these pages
/job/
/events/REgards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Use this CSS, add this code to wp-admin – Theme Options -> General settings -> Quick CSS.
COPY CODE.kleo-main-header .nav > li.active > a { box-shadow: none !important; }
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You can hide the top bar like this
COPY CODEbody.page-id-7 .header-color.social-header {display:none;}
This will be set display none for the social header only in page with id 7, if you want to hide in multiple pages you will do like this
COPY CODEbody.page-id-7 .header-color.social-header,body.page-id-8 .header-color.social-header, body.page-id-9 .header-color.social-header {display:none;}
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorCOPY CODE.kleo-main-header .navbar-header strong.logo a { font-family: 'Montserrat', sans-serif; font-size:15px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
If you want to set a background for a certain page just add page-id-11 after body
COPY CODEbody.page-id-11 { background-image: url(“http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif”); background-repeat: repeat; }
replace 11 with your page id
Regarding the widget i suggest you to set a margin-top for that widget only for this page or site-wide as you wish.
Hope that it helps
Best Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
By example if you want to use : https://www.google.com/fonts/specimen/Montserrat
Go to Theme Options -> General settings -> Quick CSS paste this css.
COPY CODE.kleo-main-header .navbar-header strong.logo a { font-family: 'Montserrat', sans-serif; }
Then Go to Theme Options -> Fonts and set for h6 your desired font family.
if you will select another font family just replace Montserrat from css with your desired font family.
Best regards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorWhite Kleo scrolled header white transparency.
COPY CODE.kleo-main-header.header-normal.header-scrolled { background-color: rgba(255,255,255,0.6); }
Black Kleo scrolled header black transparency.
COPY CODE.kleo-main-header.header-normal.header-scrolled { background-color: rgba(0,0,0,0.6); }
it’s ok?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts