This topic has 28 replies, 4 voices, and was last updated 9 years by Neptin.

  • Author
  • #37596
     Taune247
    Participant

    How do I change the indicator colors as circled in red in the picture I have included.

    Thanks,

    Attachments:
    You must be logged in to view attached files.
    #37635
     Laura
    Moderator

    Hello, this can be changed, copy this to your child theme style.css and change the background color with the one you want.

    COPY CODE
    
    .label.alert {
    background-color: #f00056;
    }
    .kleo-notifications .no-hover .label {
    background: #2ba6cb;
    }
    
    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 🙂

    #37815
     Taune247
    Participant

    Thanks Laura, that worked for the Photo count, but not for the other’s. Any suggestions?

    #37819
     Laura
    Moderator

    Hello, change it to this

    COPY CODE
    
    .label.alert {
    background-color: #f00056 !important;
    }
    .kleo-notifications .no-hover .label {
    background: #2ba6cb !important;
    }
    

    Let me know if its still not working

    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 🙂

    #37822
     Taune247
    Participant

    I tried it and it’s still not working.

    #37824
     Laura
    Moderator

    Hello, can you give me access to your wpadmin? 🙂

    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 🙂

    #37911
     Taune247
    Participant
    This reply has been set as private.
    #37912
     Taune247
    Participant

    Would you be able to help me change the color of the load more icon and the create my account button?

    Attachments:
    You must be logged in to view attached files.
    #37917
     Laura
    Moderator

    Hello, can you give me access to your ftp? i will add the codes you need so please also tell me what color it is 🙂

    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 🙂

    #38869
     Taune247
    Participant
    This reply has been set as private.
    #38876
     Laura
    Moderator

    Hello, that is the access to your database, i need access to your ftp, something like “ftp.mysite.com”

    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 🙂

    #38881
     Taune247
    Participant

    Oh I don’t think that I have that with godaddy’s wordpress hosting

    #38917
     Laura
    Moderator

    Hello, you can share with me your godaddy account so i can access to the ftp. Please share as a private message.

    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 🙂

    #38971
     Taune247
    Participant
    This reply has been set as private.
    #38999
     Laura
    Moderator

    Hello, i changed the load more color, but the create account cant be changed as i dont see the option, you have to enable registration in order to see that.

    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 🙂

    #39001
     Laura
    Moderator

    Hello, remember to clean cache to see results.

    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 🙂

    #45699
     Dean
    Participant

    Hi

    I would like to replace the icon-heart on the registration screen/pop-up. Where can I locate the code to replace it with a different icon?

    Attachments:
    You must be logged in to view attached files.
    #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 🙂

    #46301
     Neptin
    Participant

    How do you change the “Create Account” color on hover?

    #46368
     Neptin
    Participant

    Hello, change it to this

    .label.alert {
    background-color: #f00056 !important;
    }
    .kleo-notifications .no-hover .label {
    background: #2ba6cb !important;
    }
    Let me know if its still not working

    I tried this in my child theme and it didn’t work.

    #46459
     Laura
    Moderator

    Hello, please share a link to your website 🙂

    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 🙂

    #46462
     Neptin
    Participant
    #46642
     Laura
    Moderator

    Hello, the modal create account doesnt havea hover color, what color do you want to change? please share a screenshot

    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 🙂

    #46766
     Neptin
    Participant

    Attached is the screenshot. The button turns pink on hover. I want it a different color.

    #47077
     Laura
    Moderator

    Hello, i’m sorry but i do not see it, sing up its disabled

    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 🙂

    #47090
     Neptin
    Participant

    It is enabled now.

    #47091
     Neptin
    Participant

    here is another screenshot

    Attachments:
    You must be logged in to view attached files.
    #47145
     Laura
    Moderator

    Hello, try this css

    COPY CODE
    
    .button.alert:hover {
    background-color: #26a3d6 !important;
    border: 1px solid #26a3d6 !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 🙂

    #47164
     Neptin
    Participant

    Worked great!

Viewing 29 posts - 1 through 29 (of 29 total)

The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?