Forum Replies Created
-
Author
-
August 9, 2016 at 19:28 in reply to: Modify the color of the text of description of the profiles BuddyPress #131813
Laura
ModeratorHello, try by adding this to style.css of child theme :).search-item .date, .search-item .date a { color: red !important; }
August 9, 2016 at 03:36 in reply to: User Not Directed to /Register Page on Completing ‘Sign Up’ Pop-up #131737Laura
ModeratorPlease update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.
If this is useless please follow these steps to enable wp debug:
- Connect to your server by FTP
- Look in root directory of your WordPress install and open wp-config.php
- Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
COPY CODEdefine( 'WP_DEBUG', true );
- After this line add this:
COPY CODEdefine( 'WP_DEBUG_LOG', true );
WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
Repeat the described actions and then check the debug.log file and let me know what error appears.
If this is useless please try to deactivate additional plugins
After you have disabled the plugins try to see if the error persists.
Cheers
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 style.css of child theme
COPY CODEsection.container-wrap.main-color { padding-top: 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 🙂
August 5, 2016 at 23:53 in reply to: Edit BuddyPress Registration Page Button (Complete Sign Up) #131522Laura
ModeratorHello, replace it with:
COPY CODE<center><input type=”submit” name=”signup_submit” id=”signup_submit” value=”<?php esc_attr_e( ‘Complete Sign Up’, ‘buddypress’ ); ?>” /></center>
Does it work? 🙂
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 🙂
August 3, 2016 at 21:40 in reply to: Edit BuddyPress Registration Page Button (Complete Sign Up) #131266Laura
ModeratorHello, try by adding this to style.css of child theme
COPY CODE#buddypress .standard-form div.submit input { margin-right: 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 🙂
Laura
ModeratorHello, you will need to edit the archive.php template to match the one you created 🙂
You can do this easily using echo with the shortcodes
Check
http://php.net/manual/en/function.echo.php
https://developer.wordpress.org/reference/functions/do_shortcode/As visual composer elements are shortcodes, you can easily add it to the php using do_shortcode
For exampleCOPY CODEecho do_shortcode( '[vc_element]blah blah blah[/vc_element]' ); echo do_shortcode( '[vc_element2]bleh bleh bleh[/vc_element2]' );
In classic mode of the page editor you will see the shortcodes
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, just add this to style.css of child theme and change it as you wish 🙂
COPY CODEul#menu-sweetdate a { font-size: 14px; }
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 style.css of child theme 🙂
COPY CODEoption { /* Whatever color you want */ background-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
ModeratorHello, just add this to style.cs of child theme :)ul.kleo-social-icons { float: right; } div#top-social { float: right; }
Laura
ModeratorHello, try by adding this to style.css of child theme 🙂
COPY CODEdiv#subnav li a { background: #bfbfbf; padding-left: 20px; padding-right: 30px; border-radius: 10px !important; color: black !important; font-weight: 600; padding-top: 20px; padding-bottom: 20px; }
Hope 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 🙂
Laura
ModeratorHello, for the top members, just add this to style.css of your child theme 🙂
COPY CODEdiv#members-list-options :nth-child(3) { display: none !important; }
For the link color, use this
COPY CODEli#infoTab a:hover { color: red !important; }
Hope 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 🙂
Laura
ModeratorHello, try by adding this to style.css of child theme
COPY CODE.form-search .kleo-checkbox label { float: left; padding: 10px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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 can use this code, just paste it at style.css of child theme.register #main { background-color: red; }
Laura
ModeratorHello, try using this
COPY CODE.profile .seven.columns { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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 🙂
July 26, 2016 at 22:10 in reply to: Change the color and size of the featured pricing table button #130320Laura
ModeratorHello, try the following
COPY CODE.pricing-table .popular .btn-default { background-color: #f4524d; color: white; border: #f4524d; width: 200px; height: 50px; line-height: 2; font-size: 20px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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, to change background color and text color use this
COPY CODE.vc_tta-color-mulled-wine.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading { background-color: red !important; color:white; }
Add it to style.css of 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 🙂
Laura
ModeratorHello, try adding this to style.css of child theme
COPY CODE.activity-meta a { border: 1px solid black !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 🙂
July 26, 2016 at 13:16 in reply to: Change the color and size of the featured pricing table button #130218Laura
ModeratorYes you can use it where you want 🙂
Add this to style.css of child theme, it will apply for all pricing tablesCOPY CODE.pricing-table .btn-default { background-color: #f4524d; color: white; border: #f4524d; width: 200px; height: 50px; line-height: 2; font-size: 20px; }
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 🙂
July 26, 2016 at 13:01 in reply to: Forget password & login link on activation page redirecting to wp-login #130211Laura
ModeratorNot marked as solutionJuly 26, 2016 at 12:26 in reply to: Background image appears in articles content boxed section #130205Laura
ModeratorHello, should be fixed now, added this to your style.css@media (max-width: 991px) { .navbar-header { background-color: white; } }
Laura
ModeratorPlease update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.
If this is useless please follow these steps to enable wp debug:
- Connect to your server by FTP
- Look in root directory of your WordPress install and open wp-config.php
- Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
COPY CODEdefine( 'WP_DEBUG', true );
- After this line add this:
COPY CODEdefine( 'WP_DEBUG_LOG', true );
WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
Repeat the described actions and then check the debug.log file and let me know what error appears.
If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.
After you have disabled the plugins try to see if the error persists.
Cheers
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, just add this to style.css of child theme 🙂
COPY CODE.custom-color .feature-item:hover .feature-icon { border: none !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, use this 🙂
COPY CODE@media (max-width: 991px) { #header .navbar-nav .dropdown-menu>.active>a { background-color: rgb(238,47,35); } } @media (max-width: 991px) { #header .navbar-nav .dropdown-menu li a { font-weight: normal; font-size: 12px; background-color: #000000; } }
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, to hide the counter just add this to style.css of child theme
COPY CODE.search-results .page-title { 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, try adding this to style.css of child theme
COPY CODE#profile .seven.columns { display: none; } #profile .five.columns { margin: 0 auto; float: none; }
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 🙂
Laura
ModeratorHello, here it is 🙂
COPY CODE[kleo_section bg="" centered=1 border=0] [kleo_h3] Meet [kleo_colored_text color="#F00056"] Our Team [/kleo_colored_text] [/kleo_h3] [kleo_one_third][kleo_img_rounded src="http://seventhqueen.com/demo/SweetDate/v2/DefaultHeader/Wide/assets/images/small_thumb_03.png"] [kleo_h4]Becca Morgan[/kleo_h4]Founder Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. [kleo_icon icon="twitter-sign" size=2x] [kleo_icon icon="facebook-sign" size=2x] [kleo_icon icon="pinterest-sign" size=2x] [/kleo_one_third] [kleo_one_third] [kleo_img_rounded src="http://laura-solanes.com/dev/sweetdate/wp-content/uploads/2013/06/small_thumb_03.png"] [kleo_h4]Michele Storm[/kleo_h4]Chief Technical Officer Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. [kleo_icon icon="twitter-sign" size=2x] [kleo_icon icon="facebook-sign" size=2x] [kleo_icon icon="pinterest-sign" size=2x] [/kleo_one_third] [kleo_one_third] [kleo_img_rounded src="http://laura-solanes.com/dev/sweetdate/wp-content/uploads/2013/06/small_thumb_03.png"] [kleo_h4]Brady Patterson[/kleo_h4]Director of Marketing Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. [kleo_icon icon="twitter-sign" size=2x] [kleo_icon icon="facebook-sign" size=2x] [kleo_icon icon="pinterest-sign" size=2x] [/kleo_one_third][/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 🙂
Laura
ModeratorHello, please add this to style.css of child theme
COPY CODEul.dropdown-menu.sub-menu.pull-left 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
ModeratorPlease update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.
If this is useless please follow these steps to enable wp debug:
- Connect to your server by FTP
- Look in root directory of your WordPress install and open wp-config.php
- Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
COPY CODEdefine( 'WP_DEBUG', true );
- After this line add this:
COPY CODEdefine( 'WP_DEBUG_LOG', true );
WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
Repeat the described actions and then check the debug.log file and let me know what error appears.
If this is useless please try to deactivate additional plugins.
After you have disabled the plugins try to see if the error persists.
Cheers
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 can use this css 🙂
Add it to style.css of child themeCOPY CODE.kleo-tabs.tabbable li { background-color: black; }
You can use also transparent, like:
COPY CODE.kleo-tabs.tabbable li { background-color: transparent; }
For active tab, use this
COPY CODE.kleo-tabs.tabbable li a:focus { background-color: green !important; color: white; }
Color is the text color 🙂
Border
COPY CODE.kleo-tabs.tabbable li { border: 1px solid red; }
Change 1px for border 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, for page title try the following, add it to style.css of child theme
COPY CODEh1.page-title { text-align: center !important; float: none !important; }
About the license, KLEO has it and updates the plugin with every theme update so you do not have to worry about it 🙂
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 style.css of child theme 🙂
COPY CODE.kleo-login-wrap.white-login { margin-top: 150px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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