Forum Replies Created

Viewing 40 posts - 1,241 through 1,280 (of 2,796 total)
  • Author
  • in reply to: Website Not Changing #149816
     Laura
    Moderator
    Not marked as solution
    in reply to: Size logo #149683
     Laura
    Moderator

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

    COPY CODE
    
    strong.logo {
        width: 547px !important;
    }
    img#logo_img {
        width: 547px !important;
        height: 158px !important;
    }
    

    What size do you want for menu items?

    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: Chance favorit star to Thumbs up or like text #149679
     Laura
    Moderator

    Hello, just add this to style.css of child theme

    COPY CODE
    
    .activity-meta a:before {
        content: "\2665" !important;
        font-size: 18px !important;
    }
    

    It will change it to a heart

    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: Remove Social header and duplicate menus #149586
     Laura
    Moderator

    Hello, add this to style.css of child theme

    COPY CODE
    
    .groups .secondary-menu.collapse.navbar-collapse.nav-collapse {
    display: none !important;
    }
    .groups .social-header.header-color {
    display: none !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: Add fake members to kleo_status_icon Area #149538
     Laura
    Moderator

    Hello, ok 🙂
    1- Go to your child theme functions.php
    add

    COPY CODE
    
    add_filter( 'kleo_online_users_count', 'kleo_my_online_users', 10, 2);
    function kleo_my_online_users($number, $value) {
        switch ($value) {
            //ALL MEMBERS ONLINE
            case FALSE:
                return $number+6;
                break;
     
            case "Woman":
                return $number+8;
                break;
            
            case "Man":
                return $number+6;
                break;
            
            
            default:
                return $number;
                break;
        }
        
    }
    
    add_filter( 'bp_get_total_member_count', 'kleo_my_total_members' );
    function kleo_my_total_members($number) {
    $number = str_replace(".","",$number);
    return $number+14;
    }
    

    2- If step 1 does not resolve it, continue to step 2
    Go to Pages > Home > Edit
    Find the members online shortcodes, replace it with

    COPY CODE
    
    [kleo_status_icon type="total" subtitle="Members in Total"] [kleo_status_icon type="members_online" subtitle="Members Online"] [kleo_status_icon type="custom" field="I am a" value="Woman" online="yes" subtitle="Women Online" image="wp-content/themes/sweetdate/assets/images/icons/steps/status_03.png"] [kleo_status_icon type="custom" field="I am a" value="Man" subtitle="Men Online" online="yes" image="wp-content/themes/sweetdate/assets/images/icons/steps/status_04.png"]
    
    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: Resize Featured Images on home page #149535
     Laura
    Moderator
    Not marked as solution
    in reply to: Formating search #149530
     Laura
    Moderator

    Hello, try using this

    COPY CODE
    
    .option-label span {
        margin-right: 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 🙂

    in reply to: Website Not Changing #149526
     Laura
    Moderator
    Not marked as solution
    in reply to: How to hide a specific category link #149500
     Laura
    Moderator

    Hello, you could try this css

    COPY CODE
    
    small.meta-category a:first-child {
        display: none !important;
    }
    

    At style.css of child theme, but the category has to be always the first one

    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: Darker the members box lines. #149425
     Laura
    Moderator
    Not marked as solution
    in reply to: how do i change font colour under members page #149328
     Laura
    Moderator

    Hello, just add this to style.css of child theme

    COPY CODE
    
    .search-meta p {
        color: black !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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: Woocommerce, change the Shop Site #149231
     Laura
    Moderator

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

    COPY CODE
    
    .woocommerce #main-container {
        max-width: 100% !important;
        padding: 0px !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: Darker the members box lines. #149223
     Laura
    Moderator
    Not marked as solution
    in reply to: Users online #149220
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator
    Not marked as solution
    in reply to: Darker the members box lines. #148995
     Laura
    Moderator
    Not marked as solution
    in reply to: Need to remove header #148994
     Laura
    Moderator

    Hello, try adding this too

    COPY CODE
    
    h1.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 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: Mailchimp form like yours #148966
     Laura
    Moderator

    Hello, just replace the input submit one with this

    COPY CODE
    
    .mc4wp-form input[type="submit"] {
        margin: 12px 15px 30px!important;
        background-color: #00adef!important;
        border-color: #00adef;
        outline: none;
        text-decoration: none;
        padding: 14px 20px;
        font-size: 16px;
        min-width: 80px;
        -o-border-radius: 2px;
        transition: all .4s ease-in-out 0s;
        display: inline-block;
        margin-bottom: 0;
        font-weight: normal;
        line-height: 1.428571429;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        border: 1px solid transparent;
        border-radius: 4px;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
    }
    

    Basically, changed 30px to 15px

    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: Where to Change the CSS ? #148949
     Laura
    Moderator

    Hello, try by adding this to style.css of child theme

    COPY CODE
    
    .article-content p {
        font-size: 16px !important;
        line-height: 1.8;
    }
    

    Also, the font you are using is making the text show bold

    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, try by adding this to wp-config.php

    COPY CODE
    
    define('WP_MEMORY_LIMIT', '256M');
    
    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: Need to remove header #148698
     Laura
    Moderator

    Hello, did you move all the changes to the child theme and activated it?
    This css should hide the header

    COPY CODE
    
    div#header {
        display: none !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: KLEO and WOO – where to customize category widget? #148686
     Laura
    Moderator

    Hello, try by adding this to style.css of child theme

    COPY CODE
    
    a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
        display: none !important;
    }
    .quick-view.hover-tip {
        display: none !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: Import the pages #148670
     Laura
    Moderator
    Not marked as solution
    in reply to: Import the pages #148669
     Laura
    Moderator
    Not marked as solution
    in reply to: small bug found #148658
     Laura
    Moderator

    Hello, try by adding this to style.css of child theme

    COPY CODE
    
    @media only screen and (max-width: 767px) and (min-width: 480px) {
    div#item-actions {
        margin: 0 auto !important;
        display: table;
        padding-left: 30px;
    }
    }
    
    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: Website Not Changing #148648
     Laura
    Moderator
    Not marked as solution
    in reply to: Like/Thumbs Up button for Activity Feeds #148516
     Laura
    Moderator

    Hello 🙂
    Sure, use this css

    COPY CODE
    
    a.button.fav.bp-secondary-action {
        display: none !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: Formating search #148489
     Laura
    Moderator

    Hello, try the following css

    COPY CODE
    
    .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 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: Side menu Icon #148443
     Laura
    Moderator
    Not marked as solution
    in reply to: Mailchimp form like yours #148284
     Laura
    Moderator

    Hello, add this to style.css of child theme

    COPY CODE
    
    .mc4wp-form-fields input[type="email"] {
        padding: 14px 20px !important;
        height: 52px;
        border-color: #e5e5e5;
        border-style: solid;
        border-width: 1px;
        margin: 0 0 1em;
        font-size: 18px;
        line-height: 1.33;
        border-radius: 6px;
        display: inline-block;
    }
    .mc4wp-form-fields p {
        display: inline-block;
    }
    .mc4wp-form input[type="submit"] {
        margin: 12px 30px 30px !important;
        background-color: #00adef !important;
        border-color: #00adef;
        outline: none;
        text-decoration: none;
        padding: 14px 20px;
        font-size: 16px;
        min-width: 80px;
        -o-border-radius: 2px;
        transition: all 0.4s ease-in-out 0s;
        display: inline-block;
        margin-bottom: 0;
        font-weight: normal;
        line-height: 1.428571429;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        border: 1px solid transparent;
        border-radius: 4px;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: 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 🙂

     Laura
    Moderator

    Hello, 1- try adding this to style.css of child theme

    COPY CODE
    
    div#item-header-avatar {
        float: left;
    }
    div#item-header {
        padding-bottom: 0px !important;
        padding-top: 150px !important;
    }
    body.is-user-profile .bp-full-width-profile div#item-header {
        padding: 80px 50px;
        margin-top: 0;
    }
    div#item-header-avatar {
        position: absolute !important;
        margin-top: 2% !important;
        margin-left: -45% !important;
    }
    #buddypress {
        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: Adjust RTmedia video player height #148271
     Laura
    Moderator

    Hello, just add this to style.css of child theme 🙂

    COPY CODE
    
    .article-content iframe {
        width: 640px !important;
        height: 360px !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: Delete Base fields #148268
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Hello, try by adding this to style.css of child theme

    COPY CODE
    
    .search-item p {
        color: black;
    }
    .search-item p {
        color: black !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: Authorsation problem. #147982
     Laura
    Moderator

    Hello, backup that file and replace the content with

    COPY CODE
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    
    

    Turn off ithemes security
    If this resolves it then you should take a look at your ithemes security settings

    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 Disable KLEO Profile Member Type #147856
     Laura
    Moderator

    Hello, you could try with

    COPY CODE
    
    .kleo_bp_profile_member_type_label {
    display:none !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: How do I resize custom stat image? #147725
     Laura
    Moderator

    Hello, try

    COPY CODE
    
    .status img {
        width: 120px !important;
        height: 120px !important;
    }
    

    If you have a cache plugin, clear cache,if still doesnt work, try to paste it at quick css at theme settings

    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: group single page #147627
     Laura
    Moderator

    Hello, try this

    COPY CODE
    
    .groups #item-header-wrap {
        width: 100%;
        position: absolute;
        height: 400px;
    }
    

    Let me know if it helps 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a 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: What are the steps to use tabs and pills? #147625
     Laura
    Moderator

    Hello, just add this to style.css of child theme 🙂

    COPY CODE
    
    ul.nav.nav-tabs.responsive-tabs.tabs-style-default.tabs-centered li {
        background: black;
    }
    ul.nav.nav-tabs.responsive-tabs.tabs-style-default.tabs-centered li a {
        color: white !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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 CSS #147513
     Laura
    Moderator

    Hello, i see, sorry, it was my mistake, instead of input[type=”password”] replace it with

    COPY CODE
    
    #register_form_front input[type="password"]
    
    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 - 1,241 through 1,280 (of 2,796 total)

Log in with your credentials

Forgot your details?