Forum Replies Created

Viewing 40 posts - 2,681 through 2,720 (of 2,796 total)
  • Author
  • in reply to: Revolutionary Slider Buttons Show up Differently on Mobile #46130
     Laura
    Moderator

    Hello, please add this to your style.css in child theme or quick css :

    COPY CODE
    
    @media (max-width: 991px) {
    .feature-item.default-icons-size.center-icons .feature-icon, .feature-item.big-icons-size.center-icons .feature-icon {
    left: 0% !important;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Change Indicator color in Menu #45974
     Laura
    Moderator

    This replaces all hearts in the website:

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_hearts_actions');
    
    function kleo_my_hearts_actions() 
    {     
    
        /* 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';
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: bp_members_details_field – I'd like to add more than one #45965
     Laura
    Moderator

    Hello, copy bp-functions.php from custom_buddypress folder inside sweetdate theme folder and paste it inside custom_buddypress folder of sweetdate child, if there is not that folder, just create it, then edit bp-functions.php in your new folder of child theme and find this:

    COPY CODE
    
     echo '<div class="search-meta">';
     echo apply_filters('kleo_bp_members_dir_name','<h5 class="author"><a href="'. bp_get_member_permalink().'">'. bp_get_member_name().'</a></h5>');	
    

    then change it for this:

    COPY CODE
    	
     echo '<div class="search-meta">';
     echo apply_filters('kleo_bp_members_dir_name','<h5 class="author"><a href="'. bp_get_member_permalink().'">'. bp_get_member_name().'</a></h5>');	
     echo '<strong> YOUR TEXT HERE</strong>';
    

    Right now you can have one field like about me showing

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Mobile Menue Color #45487
     Laura
    Moderator

    Hello, try adding this to style.css in child theme

    COPY CODE
    
    @media (max-width: 991px) {
    .navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: black !important;
    border: 1px solid transparent;
    border-radius: 4px;
    }
    }
    .kleo-main-header .navbar-collapse ul.kleo-toggle-submenu * {
    line-height: normal;
    color: black;
    }
    .navbar-transparent .navbar-toggle .icon-bar {
    background-color: #000!important;
    }
    .navbar-toggle {
    position: relative;
    float: none;
    padding: 9px 10px;
    margin-top: 0;
    margin-bottom: 8px;
    background-color: white;
    border-radius: 4px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: [Re] Search bar in main menu #45468
     Laura
    Moderator

    Hello, use this css in style.css in child theme

    COPY CODE
    
    .kleo-main-header.header-normal {
    position: fixed;
    top: -9px;
    }
    .navbar-header {
    height: 21.5px;
    line-height: 21.5px;
    margin-top: 1%;
    }
    #ajax_search_container:before {
    position: absolute;
    display: none;
    }
    
    ajax_s.form-control {
    opacity: 1;
    height: 25px;
    }
    search-trigger i {
    margin-left: 80%;
    top: 10px;
    position: relative;
    }
    .collapse.navbar-collapse.nav-collapse ul li {
    margin-top: 2%;
    }
    #ajax_search_container {
    left: -50px !important;
    }
    .searchHidden {
    display: block;
    background-color: transparent !important;
    border: none !important;
    margin-top: -30%;
    margin-left: -110px;
    z-index: 3 !important;
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    position: relative !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Edit button above or below the page content #45449
     Laura
    Moderator

    Hello, you can add this php code to single.php or anywhere you want it

    COPY CODE
    
    <?php edit_post_link('Edit');?>
    

    Remmber if you are changing theme files copy the changed one to child theme following the same main path so your changes wont be lost in future updates.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Step through Profile tas during registration #45383
     Laura
    Moderator

    Hello, add the fields you want to Base Group as required so they will need to add them. I have edited register.php file to show your groups with the required fields, please create a folder in sweetdate child and name it “registration” then inside of it create a new file and name it register.php , inside of that file paste the content of the attached text.
    Also, add this to style.css in child theme

    COPY CODE
    
    .checkbox .label {
    font: normal 20px 'Arial';
    color: #222222;
    background: transparent;
    border-top-color: rgba(0, 0, 0, 0.2);
    border-top-style: dashed;
    border-top-width: 1px;
    padding: 10px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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.
    in reply to: Sweet Date theme too large to upload? #45307
     Laura
    Moderator

    Hello, add this to your wp-config.php and try again

    COPY CODE
    
    /** Memory Limit */
    define('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 solution

    Laura 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 🙂

    in reply to: Top Menu Dropdown Color #45198
     Laura
    Moderator

    Hello, try this

    COPY CODE
    
    .header-color .top-menu li > a, .header-color #top-social li a {
    color: rgba(0, 0, 0, 1);
    background: #C15931 !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Top Menu Dropdown Color #45194
     Laura
    Moderator

    Hello, here it is, add it to style.css in child theme, change color for the one you want :

    COPY CODE
    
    .header-color .btn-default, .header-color .nav-pills > li.active > a, .header-color .nav-pills > li.active > a:hover, .header-color .nav-pills > li.active > a:focus, .header-color .wpb_tour .nav-tab li.active, .header-color .wpb_tour .nav-tab li:hover, .header-color .tabs-style-square > li > a, .header-color .panel-default > .panel-heading, .header-color .dropdown-menu > li > a:hover, .header-color .dropdown-menu > li > a:focus, .header-color .dropdown-menu > .active > a, .header-color .dropdown-menu > .active > a:hover, .header-color .dropdown-menu > .active > a:focus, .header-color .pagination > li > a:hover, .header-color .pagination > li > span.current, .header-color #wp-calendar thead th, .header-color #wp-calendar tbody td a, .header-color .widget_tag_cloud a, .header-color .widget_nav_menu li.active > a, .header-color #wp-calendar tbody td:hover, .header-color .widget_nav_menu .current_page_item > a, .header-color .callout-blockquote blockquote, .header-color #respond .form-submit input#submit, .header-color .form-control:focus, .header-color .pricing-table .panel-heading, .header-color .pricing-table .panel-body, .header-color .pricing-table .pmpro-price .lead, .header-color .pricing-table .extra-description, .header-color .mejs-container .mejs-controls, .header-color .box-style .feature-item, .header-color input[type="text"][disabled], .header-color input[type="password"][disabled], .header-color input[type="date"][disabled], .header-color input[type="datetime"][disabled], .header-color input[type="datetime-local"][disabled], .header-color input[type="month"][disabled], .header-color input[type="week"][disabled], .header-color input[type="email"][disabled], .header-color input[type="number"][disabled], .header-color input[type="search"][disabled], .header-color input[type="tel"][disabled], .header-color input[type="time"][disabled], .header-color input[type="url"][disabled], .header-color textarea[disabled], .header-color #buddypress div.item-list-tabs ul li a span, .header-color #bp-login-widget-submit, .header-color .bbp_widget_login .button.user-submit, .header-color .rtmedia-container #rtMedia-queue-list tr > td.close, .header-color .rtmedia-activity-container #rtMedia-queue-list tr > td.close, .header-color #buddypress div.activity-comments form .ac-textarea, .header-color #buddypress .standard-form input[type=text]:focus, .header-color #buddypress table.notifications thead tr, .header-color #buddypress table.notifications-settings thead tr, .header-color #buddypress table.profile-fields thead tr, .header-color #buddypress table.wp-profile-fields thead tr, .header-color #buddypress table.messages-notices thead tr, .header-color #buddypress table.forum thead tr, .header-color #buddypress button:hover, .header-color #buddypress a.button:hover, .header-color #buddypress a.button:focus, .header-color #buddypress a.bp-secondary-action.view:hover, .header-color #buddypress input[type=submit]:hover, .header-color #buddypress input[type=button]:hover, .header-color #buddypress input[type=reset]:hover, .header-color #buddypress ul.button-nav li a:hover, .header-color #buddypress ul.button-nav li.current a, .header-color #buddypress div.generic-button a:hover, .header-color #buddypress .comment-reply-link:hover, .header-color .bbp-pagination-links a:hover, .header-color .bbp-pagination-links span.current, .header-color #bbpress-forums li.bbp-body ul.topic.sticky, .header-color .bbp-submit-wrapper button.button, .header-color #bbpress-forums .bbp-form input[type="text"]:focus, .header-color .wp-editor-area:focus, .header-color .rtmedia-container .drag-drop, .header-color .rtmedia-activity-container .drag-drop, .header-color #buddypress div.rtmedia-activity-container .drag-drop, .header-color #buddypress #item-body .rtmedia-container ul#rtmedia_comment_ul li, .header-color #buddypress #item-body .rtmedia-activity-container ul#rtmedia_comment_ul li, .header-color .rtmedia-container .rtmedia-editor-main dl.tabs dd.active > a, .header-color .rtmedia-activity-container .rtmedia-editor-main dl.tabs dd.active > a, .header-color #buddypress div.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd.active > a, .header-color .rtmedia-container .rtmedia-editor-main dl.tabs dd > a:hover, .header-color .rtmedia-activity-container .rtmedia-editor-main dl.tabs dd > a:hover, .header-color #buddypress div.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd > a:hover, .header-color .rtmedia-container .imgedit-wrap div.imgedit-menu, .header-color .rtmedia-container .imgedit-menu div, .header-color .kleo-toggle-menu .minicart-total-checkout, .header-color .kleo-toggle-menu .minicart-buttons, .header-color .kleo-toggle-menu a.remove:hover, .woocommerce .header-color .widget_product_search #searchsubmit, .woocommerce .header-color #content input.button, .woocommerce .header-color #respond input#submit, .woocommerce .header-color a.button, .woocommerce .header-color button.button, .woocommerce .header-color input.button, .woocommerce-page .header-color #content input.button, .woocommerce-page .header-color #respond input#submit, .woocommerce-page .header-color a.button, .woocommerce-page .header-color button.button, .woocommerce-page .header-color input.button {
    
    background-color: #868585;
    
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: How do I increase the lightbox background opacity? #44938
     Laura
    Moderator

    Hello, add this so style.css in child theme, you can change the opacity, i set it to 0.9, 1 is too much dark but you can choose the number you want, i suggest around 0.8 – 0.99

    COPY CODE
    
    .mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #020202;
    opacity: 0.9 !important;
    filter: alpha(opacity=80);
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Media title not showing #44868
     Laura
    Moderator

    Hello, you had rtmedia title display at none, add this to your style.css in child theme:

    COPY CODE
    
    .rtmedia-list-media .rtmedia-item-title {
    display: block !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: My Articles > Category List : Styling Issue #44050
     Laura
    Moderator

    Hello, please add this to style.css in child theme

    COPY CODE
    
    #main-container .article-content {
    padding-top: 0;
    float: none;
    width: auto;
    border: 0;
    background: transparent;
    height: 250px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: I want to set up the searching field #44046
     Laura
    Moderator

    Hello, you can use https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/ And make 2 new fields as DATE with the name Start date and End date.

    For showing user profile info in members directory you can use this:

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_member_data');
    function kleo_my_member_data() 
    {
        global $kleo_config;
        //this is the details field, right now it take the "About me" field content 
        $kleo_config['bp_members_details_field'] = 'I want to travel';
        //this display the fields under the name, eq: 36 / Paris / Traveler / Photograph. Modify with the names of the fields you want to appear there
        $kleo_config['bp_members_loop_meta'] = array(
            'FIELD1',
    		'FIELD2',
            'FIELD3',
    		'FIELD4'
        );
    }
    

    Change “I want to travel” with the field you have that users fill with desired country they want to travel, or what ever field you want.

    Change field1,2,3,4 with other fields you want to show.

    Add the code to functions.php in child theme

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: When viewing user profile #44043
     Laura
    Moderator

    Hello yes it is simple, just add this to bp-custom.php in plugins folder

    COPY CODE
    
    /**
     * Change BuddyPress default 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 solution

    Laura 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 🙂

    in reply to: Sponsor Skin #44040
     Laura
    Moderator

    Hello, use this:

    COPY CODE
    
    .fullwidthbanner-container {
    width: 103.1%;
    position: relative;
    padding: 0;
    overflow: hidden;
    left: 1.6%;
    }
    

    Also in style.css child theme

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: adjust row ? #44038
     Laura
    Moderator

    Hello, add this to your style.css in child theme:

    COPY CODE
    
    #chainlist_1_6644 {
    margin-top: -4%;
    }
    #chainlist_1_499 {
    margin-top: -4%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Sponsor Skin #43953
     Laura
    Moderator

    Hello, there is no need for a div, just add this to your style.css in child theme:

    COPY CODE
    
    .page-boxed, .kleo-navbar-fixed .page-boxed .kleo-main-header, .kleo-navbar-fixed.navbar-transparent .page-boxed #header {
    max-width: 1024px;
    margin-top: 5%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Magically disappearing text #43773
     Laura
    Moderator

    Hello, copy this to your style.css in child theme 🙂

    COPY CODE
    
    #call-to-actions .lead {
    margin-bottom: 40px;
    opacity: 100 !important;
    }
    #call-to-actions .section-title, #call-to-actions h1 {
    opacity: 100 !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Image resize #43719
     Laura
    Moderator

    Hello, add this to a new file in your root folder (or the site you want it to affect) then save the file as php.ini

    COPY CODE
    
    upload_max_filesize = 64M
    post_max_size = 64M
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: kleo_img_rounded #43718
     Laura
    Moderator

    Hello, this is for rounder image only:

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_hearts_actions');
    
    function kleo_my_hearts_actions() 
    {     
    
        /* Replace the heart over images */
        add_filter('kleo_img_rounded_icon', 'my_custom_icon');
    
    /* Replace the heart with a camera icon function */
    function my_custom_icon () {
        return 'camera';
    }
    

    This is for all the hearts in the website

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_hearts_actions');
    
    function kleo_my_hearts_actions() 
    {     
    
        /* 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';
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: How to edit the footer ccpy right content #43666
     Laura
    Moderator

    Hello, use this in functions.php of child theme

    COPY CODE
    
    function kleo_copyright_text()
    {
      echo '<p>'. __("Copyright", 'kleo_framework').' © '.date("Y").' '. get_bloginfo('name').'. <br class="hide-for-large show-for-small"/>'. get_bloginfo( 'description' ).'<br/>ADD TEXT HERE FOR NEW LINE</p>';        
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: I want to show facebook like button in the navigation #43568
     Laura
    Moderator

    Hello, add this to style.css in child theme

    COPY CODE
    
    .fb_iframe_widget {
    display: inline-block;
    position: relative;
    margin-left: 90%;
    }
    #header .is-sticky .kleo-main-header {
    animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
    height: 8%;
    }
    .fb_iframe_widget span {
    display: inline-block;
    position: relative;
    text-align: justify;
    margin-bottom: -1%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: General Questions #43538
     Laura
    Moderator

    Hello, maybe this can work:

    COPY CODE
    
    .top-links, .top-links a, .circular-progress-item input, .ajax_search_image .icon {
    color: #4D8134;
    }
    .top-links {
    text-align: right;
    color: #4D8134;
    padding: 4px 0;
    border-bottom: 1px solid #4D8134;
    background: #000;
    }
    .button, ul.sub-nav li.current a, .item-list-tabs ul.sub-nav li.selected a, #subnav ul li.current a, .wpcf7-submit, #rtmedia-add-media-button-post-update, #rt_media_comment_submit, .rtmedia-container input[type="submit"] {
    border: 1px solid #4D8134;
    background: #4D8134;
    color: #ffffff;
    }
    .button:hover, .button:focus, .form-search .button, .form-search .button:hover, .form-search .button:focus, .wpcf7-submit:focus, .wpcf7-submit:hover, #rtmedia-add-media-button-post-update:hover, #rt_media_comment_submit:hover, .rtmedia-container input[type="submit"]:hover {
    color: #ffffff;
    background-color: #3F6B2A;
    border: 1px solid #4D8134;
    }
    .button:hover, .button:focus {
    color: #fff;
    background-color: #4D8134;
    }
    a:focus {
    color: #4D8134;
    }
    .button, ul.sub-nav li.current a, .item-list-tabs ul.sub-nav li.selected a, #subnav ul li.current a, .wpcf7-submit, #rtmedia-add-media-button-post-update, #rt_media_comment_submit, .rtmedia-container input[type="submit"] {
    border: 1px solid #4D8134;
    background: #4D8134;
    color: #ffffff;
    }
    .button {
    width: auto;
    background: #4D8134;
    border: 1px solid #4D8134;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
    box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 10px 20px 11px;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background-color 0.15s ease-in-out;
    -moz-transition: background-color 0.15s ease-in-out;
    -o-transition: background-color 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: How to Make Some Small Changes? #43410
     Laura
    Moderator

    Hello, try this:

    COPY CODE
    
    @media only screen and (max-width: 940px) {
    #profile #item-header-avatar .avatar {
    border: 6px solid;
    width: 60%;
    margin-left: 20%;
    }
    [class*="column"] + [class*="column"]:last-child {
    float: none;
    display: none;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: How to show 2 status on center? #43358
     Laura
    Moderator

    Hello, try:

    COPY CODE
    
    #call-to-actions .twelve .columns {
    margin-left: -6%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Only allow registration with facebook. #43347
     Laura
    Moderator

    Hello, here:

    COPY CODE
    
    
    .reveal-modal .button.facebook {
    display: inline !important;
    }
    .reveal-modal .button {
    display: none !important;
    }
    .facebookbutton .facebook_connect.radius.small.button.facebook {
    background: #34afd2;
    border: 1px solid #34afd2;
    float: left;
    left: 65px !important;
    width: 200px !important;
    height: 50px !important;
    font-size: 25px important;
    }
    .facebookbutton .facebook_connect.radius.small.button.facebook .button:hover, .button:focus, .form-search .button, .form-search .button:hover, .form-search .button:focus, .wpcf7-submit:focus, .wpcf7-submit:hover, #rtmedia-add-media-button-post-update:hover, #rt_media_comment_submit:hover, .rtmedia-container input[type="submit"]:hover {
    font-size: 25px;
    }
    

    Also attached home-register-form.php that needs to be put in a new folder with the name “page-parts” in child theme.
    Chang the .txt so its just .php and drop it inside the new folder.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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.
    in reply to: How to Make Some Small Changes? #43301
     Laura
    Moderator

    Hello, for flag button, use this in style.css from child theme:

    COPY CODE
    
    .button:hover, .button:focus, .form-search .button, .form-search .button:hover, .form-search .button:focus, .wpcf7-submit:focus, .wpcf7-submit:hover, #rtmedia-add-media-button-post-update:hover, #rt_media_comment_submit:hover, .rtmedia-container input[type="submit"]:hover {
    background-color: #3f375d;
    border: 1px solid rgba(129, 129, 129, 0.07);
    color: #FFFFFF;
    background: #A81010;
    padding: 5px;
    border-radius: 4px;
    }
    .button, ul.sub-nav li.current a, .item-list-tabs ul.sub-nav li.selected a, #subnav ul li.current a, .wpcf7-submit, #rtmedia-add-media-button-post-update, #rt_media_comment_submit, .rtmedia-container input[type="submit"] {
    border: 1px solid rgba(129, 129, 129, 0.07);
    color: #A90F0F;
    background: #E8E8E8;
    padding: 5px;
    border-radius: 4px;
    }
    

    Let me know if it works so we can continue 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: How to show 2 status on center? #43299
     Laura
    Moderator

    Hello, try this:

    COPY CODE
    
    @media only screen and (max-width: 767px)
    .row .mobile-one {
    width: 50% !important;
    float: left;
    padding: 0 16px;
    margin-left: 0% !important;
    }
    .status {
    left: 13%;
    }
    .status {
    text-align: center;
    position: initial;
    bottom: 0px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 270px !important;
    margin-left: 10%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: A few questions… #43295
     Laura
    Moderator

    Hello, please follow the steps:

    1. Add this to your style.css in child theme:

    COPY CODE
    
    .top-links {
    background: #000 !important;
    }
    .top-links, .top-links a, .circular-progress-item input, .ajax_search_image .icon {
    color: #000 !important;
    }
    

    Change #000 with the color you want.

    2. The same as above, use this in style.css from child theme and change the color

    COPY CODE
    
    .sticky.fixed {
    background: rgb(0, 0, 0);
    background: rgba(89, 89, 89, 0.6);
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Profile page settings #43294
     Laura
    Moderator

    Hello, try adding this code to your style.css in child theme

    COPY CODE
    
    #profile .row {
    margin-top: -2%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Run a short movie as home page #43071
     Laura
    Moderator

    Hello, just add this to style.css in child theme:

    COPY CODE
    
    .tp-simpleresponsive >ul li {
    list-style: none;
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: How can add info to footer? #43054
     Laura
    Moderator

    Hello, you can use this in functions.php in child theme:

    COPY CODE
    
    function kleo_copyright_text()
    {
      echo '<p>'. __("Copyright", 'kleo_framework').' © '.date("Y").' '. get_bloginfo('name').'. <br class="hide-for-large show-for-small"/>'. get_bloginfo( 'description' ).'<br/>ADD TEXT HERE FOR NEW LINE</p>';        
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Is there a way to change the order of activity tab? #43049
     Laura
    Moderator

    Hello, just add this to bp-custom.php in plugin folder

    COPY CODE
    
    /**
     * Change BuddyPress default Members landing tab.
     */
    define('BP_DEFAULT_COMPONENT', 'profile' );
    

    This will make profile as the default tab.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Show custom profile fields #42963
     Laura
    Moderator

    Hello, you can use this code:

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_member_data');
    function kleo_my_member_data() 
    {
        global $kleo_config;
        //this is the details field, right now it take the "About me" field content 
        $kleo_config['bp_members_details_field'] = 'About Me';
        //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
        $kleo_config['bp_members_loop_meta'] = array(
            'I am a',
    		'Marital Status',
            'Country',
    		'City'
        );
    }
    

    Add it inside functions.php in child theme

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Run a short movie as home page #42618
     Laura
    Moderator

    Hello, please add this to your style.css in sweetdate child folder:

    COPY CODE
    
    .tp-caption.fullscreenvideo {
    position: absolute;
    width: 120% !important;
    height: 100% !important;
    top: -30% !important;
    }
    .tp-video-play-button {
    top: 20% !important;
    left: 82% !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: My home is not showing ok in IE11 #42393
     Laura
    Moderator

    Hola, voy a crear un css a ver si se soluciona tu problema, por favor añade el siguiente código a tu style.css en el tema child

    COPY CODE
    
     @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
      .navbar-transparent .navbar .kleo-main-header {
       position: absolute;
       width: 100%;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Hide text in responsive mode from the main page #42237
     Laura
    Moderator

    Hola, añade esto a tu style.css en el child theme:

    COPY CODE
    
    @media (min-width: 1120px) and (max-width: 860px) {
    .Aplicaciones {
    float: right;
    margin-top: 10px;
    width: 500px;
    }
    }
    @media (min-width: 850px) and (max-width: 770px) {
    .Aplicaciones {
    float: right;
    margin-top: 10px;
    width: 400px;
    }
    }
    @media (min-width: 770px) and (max-width: 624px) {
    .Aplicaciones {
    margin-top: 10px;
    width: 700px;
    padding-left: 50px;
    }
    }
    @media (min-width: 624px) and (max-width: 557px) {
    .Aplicaciones {
    margin-top: 10px;
    width: 600px;
    padding-left: 50px;
    }
    }
    @media (min-width: 543px) and (max-width: 557px) {
    .Aplicaciones {
    margin-top: 10px;
    width: 500px;
    padding-left: 50px;
    }
    }
    @media (min-width: 496px) and (max-width: 402px) {
    .Aplicaciones {
    margin-top: 10px;
    width: 400px;
    padding-left: 50px;
    }
    }
    @media (min-width: 402px) and (max-width: 290px) {
    .Aplicaciones {
    margin-top: 10px;
    width: 300px;
    padding-left: 50px;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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
    Moderator

    Hello,this is a sample code for post carousel shortcode that you have in home page, just change cat=all to the category you want to show, for example cat=news

    COPY CODE
    
    [kleo_posts_carousel cat="all" limit="6" post_formats="image,gallery,video" post_types="post,testimonials"]
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

    in reply to: Menu font #41945
     Laura
    Moderator

    Hello, please copy your header.php in the child theme and paste this at the top:

    COPY CODE
    
    <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Paytone+One" />
    

    Now add this to your style.css in child theme:

    COPY CODE
    
    .top-bar ul>li a:not(.button) {
    font-size: 17px !important;
    font-family: 'Paytone One' !important;
    }
    

    Edit 17px to match the size you want

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura 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 🙂

Viewing 40 posts - 2,681 through 2,720 (of 2,796 total)

Log in with your credentials

Forgot your details?