Forum Replies Created
-
Author
-
LauraModerator
Hello, please try with
COPY CODE/* Filter the redirect url for login*/ add_filter("login_redirect","kleo_redirect_to_profile",100,3); function kleo_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user){ /*if no redirect was specified,let us think ,user wants to be in wp-dashboard*/ if(!is_super_admin($user->ID)) return bp_core_get_user_domain($user->ID ); else return $redirect_to_calculated; /*if site admin*/ }
🙂
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 🙂
LauraModeratorHello, sorry, now its done, let me know if you still see it 🙂
I used thisCOPY CODEheader .titleLogo { 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 🙂
LauraModeratorHello, i just hide the menu item with
COPY CODEa#attending { display: none; }
I’m looking for a way to disable the attending setion, but maybe you could ask in their support forum?
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 🙂
LauraModeratorHello, please add this to quick css or style.css in child theme
COPY CODE#header { background-attachment: initial !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 🙂
LauraModeratorHello, please try this inside of functions.php of child theme
COPY CODE/* This code will redirect users from the default PMPro confirmation page to a specific page depending on their level. Set the confirmation_pages array. Array keys should be membership level ids and the values are the page ids. So array(1=>2) will redirect membership level with id = 1 to the page with id = 2. */ function my_pmpro_confirmation_redirect() { $confirmation_pages = array(1 => 2); //change this use your membership level ids and page ids global $pmpro_pages; if(is_page($pmpro_pages['confirmation'])) { foreach($confirmation_pages as $clevel => $cpage) { if(pmpro_hasMembershipLevel($clevel)) { wp_redirect(get_permalink($cpage)); exit; } } } } add_action("wp", "my_pmpro_confirmation_redirect");
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 🙂
LauraModeratorHello, please add this to your functions.php in child theme
COPY CODEadd_filter('pmpro_register_redirect', '__return_false');
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 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 🙂
LauraModeratorHello, now please add this to quick css or style.css of child theme
COPY CODE.sharebuddy { margin-left: -76%; width: 100px; margin-top: 60%; } .really_simple_share_twitter { margin-left: 110%; margin-top: -33px; } .really_simple_share_google1 { margin-left: 205px; margin-top: -66px; }
This code may look bad the first time as i have custom css, so please if it looks bad, share a member page so i can edit it and share it with others 🙂
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 🙂
LauraModeratorHello, first of all change the first code in member-header.php for this one
COPY CODE<div class="sharebuddy"style="float:left;"><?php echo do_shortcode('[really_simple_share button="facebook_like"]'); ?> <?php echo do_shortcode('[really_simple_share button="twitter"]'); ?> <?php echo do_shortcode('[really_simple_share button="google1"]'); ?></div> </div>
I will post the next step to make it horizontal and at the bottom of profile photo
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 🙂
LauraModeratorHello, i suggest using the feature image, if you want the images to be a bit smaller use this css inside of quick css or style.css of child theme
COPY CODE.article-media { width: 30%; }
This will make it 30% of size, you can change it as you want
Let me know if it helps you 🙂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 🙂
LauraModeratorHello, the codes i sent you should help, for shop page use
COPY CODE.woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img { width: 400px !important; height: auto; display: block; margin: 0 0 8px; -webkit-transition: all ease-in-out .2s; -moz-transition: all ease-in-out .2s; -o-transition: all ease-in-out .2s; transition: all ease-in-out .2s; border-bottom: 0 !important; border-radius: 6px 6px 0 0; }
Change 400px for the width of the image and let height auto
For Single product page. use
COPY CODE.woocommerce div.product div.images img, .woocommerce-page div.product div.images img, .woocommerce #content div.product div.images img, .woocommerce-page #content div.product div.images img { display: block; width: 100%; height: auto; }
100% Is the default now, change it for a % or a px, as you want
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 🙂
LauraModeratorHello, please add this to quick css or style.css in child theme
COPY CODE.article-content .upload-controls label, .article-content .uploading label, .article-content .messages-container label { color: rgb(84, 84, 84); } .arconix-faq-wrap { color: rgb(84, 84, 84); } input#user_login { color: rgb(84, 84, 84); } input#user_pass { color: rgb(84, 84, 84); }
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 🙂
LauraModeratorHello, please add this to quick css or style.css in child theme
It seems that its changed by custom cssCOPY CODE@media only screen and (max-width: 767px) { .reveal-modal, .reveal-modal.small, .reveal-modal.medium, .reveal-modal.large, .reveal-modal.xlarge { width: 80% !important; top: 15px !important; left: 50% !important; margin-left: -40%; padding: 20px !important; height: auto; } }
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 🙂
LauraModeratorHello, for everyone that has the buttons moved after adding the css, please add this also:
COPY CODEdiv#item-buttons { margin-left: 100%; }
It will fix the issue
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 🙂
LauraModeratorHello, please add this to quick css or style.css in child theme
COPY CODE#header { height: 800px; }
Modify 800 for the height that you want
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 🙂
LauraModeratorHello, you can auto assign a membership as default for all new signups, please add this to functions.php in child theme
COPY CODE/* ------------------------------------------------------------ :: ADD DEFAULT LEVEL AT PMPPRO --------------------------------------------------------------- */ add_action('user_register', 'kleo_pmpro_default_level'); function kleo_pmpro_default_level($user_id) { pmpro_changeMembershipLevel(1,$user_id); }
Your default level should be ID 1 (the first you make ) But if its another, juts change 1 for the 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 🙂
LauraModeratorHello, fixed with
COPY CODE.revslider-head.absolute-head .form-wrapper { margin-top: 0px !important; } @media (max-width: 991px) { .page-template-page-templatesfront-page-php .rev_slider_wrapper { min-height: 200px; } }
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 🙂
LauraModeratorHello, fixed with
COPY CODE.forcefullwidth_wrapper_tp_banner { margin-bottom: 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 🙂
LauraModeratorHello, try this css in quick css or style.css in child theme
COPY CODE.revslider-head.absolute-head .form-wrapper { margin-top: 138px; width: 300px; }
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 🙂
LauraModeratorHello, its fixed, you had wrong setup of shortcodes, this is the correct for blog carousel section
COPY CODE[kleo_section centered=1 border=1] [kleo_row] [kleo_one] [kleo_h2] Les bloggen vår [/kleo_h2] [/kleo_one] [kleo_one][kleo_posts_carousel limit="3" post_formats="all"] [/kleo_one] [/kleo_row][/kleo_section]
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 🙂
LauraModeratorHello, better use
COPY CODEimg.kleo-rounded { height: 35px!important; width: 35px!important; }
It shouldnt break nothing, just the rounded images would be bigger
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 🙂
March 25, 2015 at 16:48 in reply to: Suggestion – Give us an option to disable the whole public message/@/all members #51492LauraModeratorHello, those things can be easy fixed with css and plugins.
The thing is that we didnt create Buddypress and it is made for a social website where everyone can see everyone, KLEO only integrates with Buddypress.To make that changes to Buddypress, you can use the following css to disable @ and activity text on profile (add to quick css or style.css in child theme)
COPY CODE.buddypress div#item-header div#item-header-content h4 { display: none; } .buddypress div#item-header div#item-header-content span.activity { margin-left: 10px; display: none; }
To prevent strangers from viewing others activity, you can use the attached plugin so activity is only for friends.
I would just ask to not insult the work Buddypress team made creating this awesome plugin, free for everyone and well done.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.LauraModeratorHello, who wants to add this, please install the plugin https://wordpress.org/plugins/really-simple-facebook-twitter-share-buttons/
Activate it then go to settings and deactivate the buttons on everything (unless you want it in posts,pages…)
Finally, go to FTP and find inside wp-content/themes/sweetdate/members/single/member-header.php
Copy the file and paste it inside wp-content/themes/sweetdate-child/members/single
Edit the file and find the following:COPY CODE<?php do_action('kleo_bp_header_actions');?>
Then add right AFTER it, in tthe next line, this
COPY CODE<div style="float:left;"><?php echo do_shortcode('[really_simple_share button="facebook_like"]'); ?> <?php echo do_shortcode('[really_simple_share button="twitter"]'); ?> <?php echo do_shortcode('[really_simple_share button="google1"]'); ?></div>
This will add Twitter, Facebook, Google+
Check attachmentHi 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.LauraModeratorHello, please try:
COPY CODE#header a:not(.button)div#main.widgets-container.sidebar_location.form-search a:not(.button).form-search.custom input[type="text"].form-search.custom input[type="password"].form-search.custom select { color: #000080 !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 🙂
LauraModeratorHello, kleo one is not opened at first and not closed at the end, try:
COPY CODE[kleo_one] [kleo_h2] Varme historier fra [kleo_colored_text color=”#F00056″] våre medlemmer[/kleo_colored_text][/kleo_h2] [kleo_lead_paragraph] Les bloggen vår og se hva andre medlemmer driver med [/kleo_lead_paragraph] [/kleo_one] [kleo_one] [kleo_posts_carousel limit=”3″ post_formats=”all”] [/kleo_one]
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 🙂
LauraModeratorHello, i will check it out so you can have 8 icons
For the icon order, use this function in your functions.php in child themeCOPY CODE/* my tab order settings */ function bbg_change_profile_tab_order() { global $bp; $bp->bp_nav['profile']['position'] = 10; $bp->bp_nav['media']['position'] = 20; $bp->bp_nav['activity']['position'] = 30; $bp->bp_nav['notifications']['position'] = 40; $bp->bp_nav['messages']['position'] = 50; $bp->bp_nav['friends']['position'] = 60; $bp->bp_nav['groups']['position'] = 70; $bp->bp_nav['forums']['position'] = 80; } add_action('bp_setup_nav', 'bbg_change_profile_tab_order', 999 ); /* my members landing tab */ define('BP_DEFAULT_COMPONENT', 'profile' );
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 🙂
LauraModeratorHello, if sweetdate is boxed layout the css is:
COPY CODE.kleo-page { background: #fff; box-shadow: 0 0 3px rgba(153,153,153,0.1); max-width: 1170px; min-width: 300px; margin: 0 auto; }
To change the wide, you need to change “1170px” and paste it to quick css or style.css in child theme
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 🙂
LauraModeratorHello, please try:
COPY CODE@media only screen and (max-width: 767px) { .logo a, .logo img { -moz-transition: none; -webkit-transition: none; -o-transition: none; transition: none; 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 🙂
LauraModeratorHello, please use this:
Replace the .woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img css for thisCOPY CODE.woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img { width: 400px !important; height: auto; display: block; margin: 0 0 8px; -webkit-transition: all ease-in-out .2s; -moz-transition: all ease-in-out .2s; -o-transition: all ease-in-out .2s; transition: all ease-in-out .2s; border-bottom: 0 !important; border-radius: 6px 6px 0 0; }
Replace the .woo-info-item-grid css for this
COPY CODE.woo-info-item-grid { min-height: 80px; padding: 0 5px 5px; position: relative; text-align: center; display: inline-block; width: 120%; float: right; margin-right: -150%; margin-top: -50%; font-size: 24px; }
And .woo-info-buttons for :
COPY CODE.woo-info-buttons { border-top: none !important; padding: 5px 0; text-align: center; display: inline-block; width: 200px; float: right; margin-right: -240% !important; margin-top: -44% !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 🙂
LauraModeratorHello, here is that i did:
CSS > Inisde quick css or style.css
Submenu tabs width cssCOPY CODE.dl-horizontal dd { margin-left: 280px; } .dl-horizontal dt { float: left; width: 260px; line-height: 2.3em; overflow: hidden; clear: left; text-align: right; text-overflow: ellipsis; white-space: nowrap; font-weight: bold; }
I added support for Buddypress Cover Photo by SeventhQueen replacing this
COPY CODE<style type="text/css"> body.buddypress.is-user-profile div#item-header { background-image: url("<?php echo $image_url;?>"); background-repeat: no-repeat; background-size: cover; background-position: <?php echo $position;?>; } </style>
For this
COPY CODE<style type="text/css"> body.buddypress.is-user-profile div#item-header, body.buddypress.is-user-profile div #profile { background-image: url("<?php echo $image_url;?>"); background-repeat: no-repeat; background-size: cover; background-position: <?php echo $position;?>; } </style>
To change the word Music to Audio in rtMedia, i installed the plugin Codestyling localization in your website, then scanned english language, searched for Music in rtMedia then changed it ( check attachment )
As i made Buddypress Cover Photo compatible, do you still require the other changes?
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.LauraModeratorHello, use this to change text color to your blue
COPY CODE#header a:not(.button), div#main .widgets-container.sidebar_location .form-search a:not(.button), .form-search.custom input[type="text"], .form-search.custom input[type="password"], .form-search.custom select { color: #000080; }
Add to quick css or style.css in child theme
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 🙂
LauraModeratorHello, you can play with shortcodes as you want, the demo homepage has nice shortcodes, also in documentation you can find homepage shortcodes.
Here its a shortcode for the map background with text as in blovin.com
COPY CODE[kleo_call_to_action bg="http://blovin.com/wp-content/uploads/2013/06/map-bg1.png"] [kleo_one] [kleo_h1]HEADER [kleo_colored_text color="#F00056"] COLORED TEXT HERE [/kleo_colored_text][/kleo_h1] [kleo_lead_paragraph]Description here here here here here here here here here here here here here here here here here here here here <strong>BOLD TEXT</strong>[/kleo_lead_paragraph] [kleo_button url="register" style="standard" size="large" round="radius" icon="0,before" target="_self"] BUTTON REGISTER [/kleo_button] [/kleo_one]
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 🙂
LauraModeratorHello, please try with this, add it to quick css or style.css in child theme, and let me know if you like it
COPY CODE.kleo_text_column.wpb_content_element img:hover { border-style: double; border-color: rgb(253, 254, 255); border-width: 6px; border-radius: 60%; box-shadow: 0px 0px 10px rgba(136, 136, 136, 0.46); -webkit-transform: rotate(180deg); transform: rotate(180deg); width: 100px; } .kleo_text_column.wpb_content_element img { -webkit-transition: width 1s, height 1s, -webkit-transform 1s; transition: width 1s, height 1s, transform 1s; }
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 🙂
LauraModeratorHello, in mobile, sticky is disabled, please check out our demo.
To fix your logo, please add this to quick css or style.css in child themeCOPY CODE@media screen and (max-width: 480px) { .logo img { height: auto; margin-left: 15%; } }
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 🙂
LauraModeratorHello, please use this css in quick css or style.css of child theme
COPY CODE.dwqa-container .avatar { border-style: hidden; border-radius: 60%; } article .article-meta { margin-left: -2%; } .dwqa-single-question .dwqa-favourite { padding: 3px 15px 3px 12px !important; width: 60px; background: #555; color: #fff; margin-right: 2% !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 🙂
LauraModeratorHello, please add this to your quick css or style.css in child theme
COPY CODE.offcanvas-left.offcanvas-type-default .offcanvas-sidebar, .offcanvas-left.offcanvas-type-overlay .offcanvas-sidebar { -webkit-transform: translate(0,0) !important; transform: translate(0,0) !important; } .offcanvas-left .wrap-canvas-menu .offcanvas-title .open-sidebar { float: right; display: none; } .kleo-page { margin-left: 20%; }
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 🙂
LauraModeratorHello, please add this to your functions.php in child theme and try again buddypress tools
COPY CODEadd_action('bp_core_activated_user', 'kleo_add_member_activity'); function kleo_add_member_activity($user_id) { add_user_meta( $user_id, 'last_activity', date("Y-m-d H:i:s")); }
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 🙂
LauraModeratorHello, please add this to your quick css or style.css in child theme
COPY CODE@media only screen and (max-width: 480px) { .page-template-page-templatesfront-page-php .rev_slider_wrapper { min-height: 130px; height: 0px!important; } .tp-fullwidth-forcer { height: 211px !important; } } .tp-fullwidth-forcer { height: 700px !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 🙂
March 10, 2015 at 16:23 in reply to: Different Background Color for Header, Main and Top Menu #49493LauraModeratorHello, here it is: Just add the ones you want to quick css or style.css in child theme.
Top GreenCOPY CODE.social-header.header-color { background-color: #138808; }
Hide borders of Top Menu
COPY CODE.header-color hr, .header-color.container-wrap, .header-color#footer, .header-color#socket, .header-color.social-header, .header-color .top-menu .tabdrop:before, .header-color #top-social .tabdrop:before, .header-color #top-social, .header-color .top-menu > ul, .header-color .kleo-main-header, .header-color .template-page, .header-color .sidebar-right, .header-color .sidebar-left, .header-color .sidebar-extra, .header-color .sidebar-main, .header-color .hr-title, .header-color .nav-tabs, .header-color .nav-pills > li > a, .header-color .kleo-tabs .nav .open > a.dropdown-toggle, .header-color .kleo-tabs .nav .open > a.dropdown-toggle:hover, .header-color .kleo-tabs .nav .open > a.dropdown-toggle:focus, .header-color .kleo-tabs .tabdrop .dropdown-menu, .header-color .dropdown-menu, .header-color #top-social li a, .header-color .top-menu li > a, .header-color .pagination > li > a, .header-color .pagination > li > span, .header-color .callout-blockquote blockquote, .header-color .masonry-listing .post-content, .header-color .list-divider li, .header-color #ajax_search_container, .header-color .form-control, .header-color .feature-item:hover .feature-icon, .header-color .bordered-icons .feature-item.default-icons-size .feature-icon, .header-color .bordered-icons .feature-item.big-icons-size .feature-icon, .header-color input[type="text"], .header-color input[type="password"], .header-color input[type="date"], .header-color input[type="datetime"], .header-color input[type="datetime-local"], .header-color input[type="month"], .header-color input[type="week"], .header-color input[type="email"], .header-color input[type="number"], .header-color input[type="search"], .header-color input[type="tel"], .header-color input[type="time"], .header-color input[type="url"], .header-color textarea, .header-color .activity-timeline, .header-color #buddypress div.item-list-tabs ul li a span, .header-color #buddypress button, .buddypress .header-color a.button, .header-color #buddypress a.button, .header-color #buddypress input[type=submit], .header-color #buddypress input[type=button], .header-color #buddypress input[type=reset], .header-color #buddypress ul.button-nav li a, .header-color #buddypress div.generic-button a, .header-color.bp-full-width-profile div.generic-button a, .header-color #buddypress .comment-reply-link, .header-color #buddypress #whats-new, .header-color #buddypress div.message-search, .header-color #buddypress div.dir-search, .header-color #buddypress .activity-read-more, .header-color #bp-login-widget-submit, .header-color .bbp_widget_login .button.user-submit, .header-color #wp-calendar caption, .header-color .wp-caption, .header-color .widget form#bbp-search-form > div, .header-color .widget_search #searchform > div, .header-color #bp-login-widget-form input[type="text"], .header-color #bp-login-widget-form input[type="password"], .header-color .bbp-login-form input[type="text"], .header-color #buddypress #friend-list .friend-inner-list, .header-color #buddypress #member-list .member-inner-list, .header-color #buddypress #members-list .member-inner-list, .header-color #buddypress #groups-list .group-inner-list, .header-color #buddypress div#item-nav .tabdrop .dropdown-menu, .header-color #buddypress div.profile, .header-color #buddypress #friend-list div.action .generic-button a.send-message, .header-color #buddypress #member-list div.action .generic-button a.send-message, .header-color #buddypress #members-list div.action .generic-button a.send-message, .header-color #buddypress form.standard-form .left-menu img.avatar, .header-color .checkbox-mark, .header-color #buddypress div#group-create-tabs ul li.current a, .header-color .rtmedia-container #rtMedia-queue-list tr td, .header-color #buddypress .standard-form textarea, .header-color #buddypress .standard-form input[type=text], .header-color #buddypress .standard-form input[type=color], .header-color #buddypress .standard-form input[type=date], .header-color #buddypress .standard-form input[type=datetime], .header-color #buddypress .standard-form input[type=datetime-local], .header-color #buddypress .standard-form input[type=email], .header-color #buddypress .standard-form input[type=month], .header-color #buddypress .standard-form input[type=number], .header-color #buddypress .standard-form input[type=range], .header-color #buddypress .standard-form input[type=search], .header-color #buddypress .standard-form input[type=tel], .header-color #buddypress .standard-form input[type=time], .header-color #buddypress .standard-form input[type=url], .header-color #buddypress .standard-form input[type=week], .header-color #buddypress .standard-form select, .header-color #buddypress .standard-form input[type=password], .header-color #buddypress .dir-search input[type=search], .header-color #buddypress .dir-search input[type=text], .header-color .bbp-pagination-links a, .header-color .bbp-pagination-links span, .header-color #bbpress-forums li.bbp-body ul.forum, .header-color #bbpress-forums li.bbp-body ul.topic, .header-color form#new-post, .header-color #bbpress-forums .bbp-form input[type="text"], .header-color .quicktags-toolbar, .header-color .wp_themeSkin tr.mceFirst td.mceToolbar, .header-color .quicktags-toolbar input, .header-color .wp-editor-area, .header-color .rtmedia-container .rtmedia_next_prev a, .header-color .rtmedia-activity-container .rtmedia_next_prev a, .header-color #buddypress div.rtmedia-activity-container .rtmedia_next_prev a, .header-color #rtm-gallery-title-container #rtm-media-options, .header-color #rtMedia-upload-button, .header-color #buddypress #item-body .rtmedia-item-comments .rt_media_comment_form textarea, .header-color .rtmedia-container .rtmedia-editor-main dl.tabs dd > a, .header-color .rtmedia-activity-container .rtmedia-editor-main dl.tabs dd > a, .header-color #buddypress div.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd > a, .header-color .rtmedia-container .imgedit-wrap div.imgedit-settings .imgedit-group, .header-color #buddypress .rtmedia-container textarea, .header-color #buddypress .rtmedia-container input[type=text], .header-color #buddypress .rtmedia-container input[type=text], .header-color #buddypress .rtmedia-container input[type=color], .header-color #buddypress .rtmedia-container input[type=date], .header-color #buddypress .rtmedia-container input[type=datetime], .header-color #buddypress .rtmedia-container input[type=datetime-local], .header-color #buddypress .rtmedia-container input[type=email], .header-color #buddypress .rtmedia-container input[type=month], .header-color #buddypress .rtmedia-container input[type=number], .header-color #buddypress .rtmedia-container input[type=range], .header-color #buddypress .rtmedia-container input[type=search], .header-color #buddypress .rtmedia-container input[type=tel], .header-color #buddypress .rtmedia-container input[type=time], .header-color #buddypress .rtmedia-container input[type=url], .header-color #buddypress .rtmedia-container input[type=week], .header-color #buddypress .rtmedia-container select, .header-color #buddypress .rtmedia-container input[type=password], .header-color .kleo-toggle-menu .kleo-toggle-submenu, .header-color .kleo-toggle-menu a.remove, .header-color .woocommerce .kleo-cart-totals .totals-wrap, .header-color #articles-dir-list article.article-container { border-color: transparent; }
Top Menu Icon Colors and Text White
COPY CODE.icon-twitter:before { content: '\e967'; color: white; } .icon-facebook:before { content: '\e94e'; color: white; } .icon-linkedin:before { content: '\e95c'; color: white; } .icon-gplus:before { content: '\e957'; color: white; } .icon-youtube:before { content: '\e96d'; color: white; } .icon-pinterest-circled:before { content: '\e95e'; color: white; } .header-color .top-menu li > a, .header-color #top-social li a { color: white; }
Header Orange
COPY CODE.page-boxed, .kleo-navbar-fixed .page-boxed .kleo-main-header, .kleo-navbar-fixed.navbar-transparent .page-boxed #header { max-width: 1200px; background-color: #ff9933; }
Main Menu Blue
COPY CODE.js .navbar-resize .navbar-nav { padding-top: inherit; background-color: #000080; width: 1200px; margin-left: -1.3%; }
Main Menu Text White
COPY CODE.icon-home:before { content: '\e835'; color: white; padding-left: 20px; padding-right: 20px; } .kleo-main-header.header-left:not(.header-scrolled) .navbar-collapse>ul>li>a { line-height: 88px!important; 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 🙂
LauraModeratorHello, please add this to quick css or style.css in child theme
COPY CODE.revslider-head.absolute-head .form-wrapper { margin-top: 138px; margin-left: 70%; width: 110%; } .form-header { border-left: 10px solid rgba(42, 42, 42, 0.23); border-top: 10px solid rgba(42, 42, 42, 0.23); border-right: 10px solid rgba(42, 42, 42, 0.23); } .form-search, .form-header, div.alert-box, div.pagination span.current { background: rgba(32, 32, 32, 0.67); } .form-search { border-left: 10px solid rgba(42, 42, 42, 0.23); border-right: 10px solid rgba(42, 42, 42, 0.23); } .form-footer { color: #FDFAFA; padding: 20px 20px 10px; border-left: 10px solid rgba(42, 42, 42, 0.23); border-bottom: 10px solid rgba(42, 42, 42, 0.23); border-right: 10px solid rgba(42, 42, 42, 0.23); background: rgba(32, 32, 32, 0.67); } .form-search .notch { border-top: none; } .form-search.custom input[type="text"], .form-search.custom input[type="password"] { border: 1px solid rgba(61, 61, 61, 0.13); } .form-search.custom div.custom.dropdown a.current, .form-search.custom input[type="text"], .form-search.custom input[type="password"], .form-search.custom select { background-color: #F9FBFC; color: black; } .form-search.custom div.custom.dropdown a.selector, .form-search.custom div.custom.dropdown a.current, .form-search.custom select { border: 1px solid rgba(61, 61, 61, 0.13); } .form-search.custom div.custom.dropdown a.selector:after { content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: #060606 transparent transparent transparent; position: absolute; left: 50%; top: 50%; margin-top: -2px; margin-left: -5px; color: black; }
You can change the colors as you want 🙂
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