Forum Replies Created
-
Author
-
Laura
ModeratorHello, maybe try with
COPY CODE#header { width: 1630px; margin-left: -26%; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to style.css of child theme:
COPY CODEul#menu-menu-principal { margin-top: 15%; margin-left: -55%; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, this should work 🙂
COPY CODEdiv#footer { border-top: 5px solid; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try this instead:
COPY CODEbody.home-page .article-media.kleo-banner-slider { display: none !important; }
If no change, try by clearing browser cache or website cache 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to functions.php of child theme
COPY CODEadd_action('user_register', 'kleo_pmpro_default_level'); function kleo_pmpro_default_level($user_id) { pmpro_changeMembershipLevel(1,$user_id); }
Change the 1 for your default level id
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, maybe try adding this to style.css of child theme
COPY CODEli.header-login-button { width: 50%; } li.header-register-button { width: 50%; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by replacing the bp-custom.php with
COPY CODE<?php // hacks and mods will go here if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) ) define( ‘BP_AVATAR_THUMB_WIDTH’, 150 ); //change this with your desired thumb width if ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) ) define( ‘BP_AVATAR_THUMB_HEIGHT’, 150 ); //change this with your desired thumb height if ( !defined( ‘BP_AVATAR_FULL_WIDTH’ ) ) define( ‘BP_AVATAR_FULL_WIDTH’, 260 ); //change this with your desired full size,weel I changed it to 260 :) if ( !defined( ‘BP_AVATAR_FULL_HEIGHT’ ) ) define( ‘BP_AVATAR_FULL_HEIGHT’, 260 ); //change this to default height for full avatar define ( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 640 ); define ( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’, $max_in_kb ); ?>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to functions.php of child theme
COPY CODE// Remove admin from the member directory function bpdev_exclude_users($qs=false,$object=false){ $excluded_user='1'; // Id's to remove, separated by comma if($object != 'members' && $object != 'friends')// hide admin to members & friends return $qs; $args=wp_parse_args($qs); if(!empty($args['user_id'])) return $qs; if(!empty($args['exclude'])) $args['exclude'] = $args['exclude'].','.$excluded_user; else $args['exclude'] = $excluded_user; $qs = build_query($args); return $qs; } add_action('bp_ajax_querystring','bpdev_exclude_users',20,2); // once admin is removed, we must recount the members ! function bpfr_hide_get_total_filter($count){ return $count-1; } add_filter('bp_get_total_member_count','bpfr_hide_get_total_filter');
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i see the issue, you added a style to the widgets but not a global css, try this:
Edit your page and edit each section, in Extra class, add this: widget-css
Now save and go to style.css of child theme, then paste this:COPY CODE.widget-css .vc_row.wpb_row.vc_inner.vc_row-fluid { margin-right: 15px !important; margin-left: 15px !important; border-top-width: 1px !important; border-right-width: 1px !important; border-bottom-width: 1px !important; border-left-width: 1px !important; padding-top: 25px !important; padding-right: 35px !important; padding-bottom: 25px !important; padding-left: 35px !important; border-left-color: #e5e5e5 !important; border-left-style: solid !important; border-right-color: #e5e5e5 !important; border-right-style: solid !important; border-top-color: #e5e5e5 !important; border-top-style: solid !important; border-bottom-color: #e5e5e5 !important; border-bottom-style: solid !important; border-radius: 10px !important; } .widget-css .kleo_text_column { margin-bottom: 30px !important; height: 232px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to functions.php of child theme
COPY CODEadd_action('after_setup_theme','kleo_my_hearts_actions'); function kleo_my_hearts_actions() { /* disable matching on member profile */ remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); /* Replace the heart over images */ add_filter('kleo_img_rounded_icon', 'my_custom_icon'); /* Replace the heart from register modal */ add_filter('kleo_register_button_icon', 'my_custom_icon_register'); /* Replace the heart from About us widget */ add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget'); } /* Replace the heart with a camera icon function */ function my_custom_icon () { return 'camera'; } /* Replace the heart from register modal with a user icon function */ function my_custom_icon_register () { return 'user'; } /* Replace the heart from about us widget with a user icon function */ function my_custom_icon_about_widget () { return 'user'; } add_action('after_setup_theme','kleo_remove_actions'); /** * Override existing actions * Use these functions to replace/remove existing actions * @since Sweetdate 1.3 */ function kleo_remove_actions() { /* For example uncomment the line bellow to disable matching on member profile */ remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to style.css of child theme
COPY CODE.bbp-search-form { display: none; } span.bbp-topic-started-by { margin-top: 0.5%; position: absolute; margin-left: -65px; }
For the avatar, its better to not move it because would mess with mobile view
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to style.css of child theme
COPY CODEbody.home-page .article-media.kleo-banner-slider { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to style.css of child theme
COPY CODEa.button { display: none !important; } table.shop_table.shop_table_responsive.my_account_orders a { display: inline-block !important; } p.form-row.form-row-wide a { display: none; }
Let me know if that helps 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to style.css in child theme
COPY CODEimg#logo_img { width: 150px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please add this to style.css of child theme, this should do it
COPY CODEdiv#search-bar { background: transparent !important; }
This is everything i can do for you right now, we can only help with small modifications and i already did more than that.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, this should do it, please add it to style.css of child theme
COPY CODEdiv#footer p { text-align: center; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, yes, you can do it by adding this to style.css of child theme then adding the url of the image
COPY CODEspan.icon-bar { display: none !important; } button.navbar-toggle { background-image: url('IMAGE URL'); width: 30px; height: 30px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to functions.php of child theme
COPY CODEadd_action('after_setup_theme','kleo_remove_actions'); /** * Override existing actions * Use these functions to replace/remove existing actions * @since Sweetdate 1.3 */ function kleo_remove_actions() { remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHelo, this should do it, please add it to style.css of child theme
COPY CODE@media (max-width: 991px) { .kleo-main-header, .navbar-transparent .kleo-main-header, .kleo-navbar-fixed.navbar-transparent #header { background-color: #FFF; } .navbar-transparent .navbar-toggle .icon-bar { background-color: #000!important; } ul#menu-home-menu a { color: black; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, this will do it, please add it to child theme style.css
COPY CODE.yith-wcwl-wishlistaddedbrowse a:before { color: red !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHere it is, add it to style.css but you will need to edit buddypress default image size following this tutorial 🙂
COPY CODEli.bmbl-avatar img { width: 150px !important; height: 150px; }
https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, about the gap, try by adding this to the page CSS in visual composer
COPY CODEspan.hover-element { width: 200px; }
Its the hover element width
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello,please add this to style.css it will disable the border of the icons on hover
COPY CODEspan.feature-icon.el-appear:hover { border: none !important; }
This will change their color:
COPY CODEspan.feature-icon.el-appear:before { color: #777777; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, could you explain a bit more the buddypress issue? It’s very weird that it locked you outside the site, what did you do exactly before that happened?
About the other issue, what do you mean by “make the page header shown along with the breadcrumb”
For the menu item hover, maybe try adding this to your style.css in child themeCOPY CODE.collapse.navbar-collapse.nav-collapse a:hover { color: red; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try the following:
Copy header.php of main theme to child theme, edit it and add the following just below <head>COPY CODE<?php if ( bp_is_my_profile() ) { ?> <style type="text/css" media="screen"> #profile { display: none !important; } </style> <?php } ?>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try by adding this to the style.css of child theme
COPY CODE@media (max-width: 991px) { .posts-listing.responsive-cols.kleo-masonry.per-row-4.with-meta.masonry-listing article { padding: 0px !important; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to of child theme style.css
COPY CODE.single-product .collapse { display: block !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, you could add a custom class to the element, then use a mobile only css with padding 0
For example:
the element class would be mobile-padding
then for mobile only effect:COPY CODE@media (max-width: 991px) { .mobile-padding { padding:0px !important; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please add this to style.css
COPY CODEdiv#accordion-woo .panel:nth-child(2n) { display: none; }
This should hide the “poštovné” tab
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i have tested both firefox and google chrome and they seem to work fine, maybe you have a bad setting in firefox that could show it like that? Did you try clearing cache?
I do see the logo issue, that can be solved if you add this to style.css 🙂
COPY CODE@-moz-document url-prefix() { h1#logo { width: 200px !important; } }
Let me know if it helps 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Attachments:
You must be logged in to view attached files.October 19, 2015 at 22:48 in reply to: Remove “read more” button and add beginning of post on custom posts #83281Laura
ModeratorHello, this should hide the read more
COPY CODEspan.muted.pull-right { display: none; }
Please add it to the style.css
For the other issues, might be related to the custom post typeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please add this to style.css
COPY CODEli#nav-menu-item-search { display: none; }
This will hide the theme search as you already have the google one added to your menu, sadly to style it as the theme requires some extra development
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, you could try by adding this to style.css of child theme
COPY CODE.woocommerce ul.products li.product .product-transition-single { height: 400px; }
To make the image appear fine, make them all the same size, and in the center of a big white background, this way all should look the same. That code will make the box the same size
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, maybe try by adding this to style.css of child theme
COPY CODE@media screen and (min-device-width: 1000px) and (max-device-width: 1200px) { .collapse.navbar-collapse.nav-collapse { margin-top: -11.5%; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, done with
COPY CODE.kleo-page.wide-style { background-image: url('http://singlehoneys.com/wp-content/uploads/2015/10/zen-865022_1280.jpg') !important; background-repeat: no-repeat !important; background-size: cover !important; background-attachment: fixed !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, done with :
COPY CODE.bp-user #buddypress #item-header-avatar { margin-top: -20px !important; position: absolute !important; margin-left: -45% !important; } .buddypress div#item-header { padding-top: 140px !important; padding-bottom: 50px !important; }
Thats all i can do right now 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, sorry i thought was Sweetdate theme as this topic was in that category,
For KLEO, its in buddypress > members > register.php
copy that file and paste it in child theme ( create the same folders )
Then replace content withCOPY CODE<div id="buddypress"> <?php do_action( 'bp_before_register_page' ); ?> <div class="page" id="register-page"> <?php echo do_shortcode( 'GRAVITY-FORM-SHORTCODE-HERE' ); ?> </div> <?php do_action( 'bp_after_register_page' ); ?> </div><!-- #buddypress -->
And add your gravity form shortcode 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, you could try to add this to quick css
COPY CODE.revslider-head.absolute-head .form-wrapper { margin-top: 238px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, that could be done by css:
COPY CODEul#menu-top li:onclick { background-color: red; color: white; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to your wp-config.php below “That’s all….”
COPY CODEdefine('WP_MEMORY_LIMIT', '296M');
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts