-
Author
Tagged: sweetdate, registration, icon
-
December 4, 2014 at 05:12 #37596
Taune247
ParticipantHow 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.December 4, 2014 at 14:39 #37635Laura
ModeratorHello, 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 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 🙂
December 5, 2014 at 20:40 #37815Taune247
ParticipantThanks Laura, that worked for the Photo count, but not for the other’s. Any suggestions?
December 5, 2014 at 21:27 #37819Laura
ModeratorHello, 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 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 🙂
December 5, 2014 at 22:02 #37824Laura
ModeratorHello, 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 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 🙂
December 6, 2014 at 20:03 #37912Taune247
ParticipantWould 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.December 6, 2014 at 21:49 #37917Laura
ModeratorHello, 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 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 🙂
December 12, 2014 at 21:10 #38876Laura
ModeratorHello, 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 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 🙂
December 12, 2014 at 21:48 #38881Taune247
ParticipantOh I don’t think that I have that with godaddy’s wordpress hosting
December 13, 2014 at 00:47 #38917Laura
ModeratorHello, 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 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 🙂
December 13, 2014 at 15:01 #38999Laura
ModeratorHello, 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 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 🙂
December 13, 2014 at 15:06 #39001Laura
ModeratorHello, 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 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 🙂
February 12, 2015 at 00:34 #45699Dean
ParticipantHi
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.February 13, 2015 at 11:28 #45974Laura
ModeratorThis replaces all hearts in the website:
COPY CODEadd_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 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 🙂
February 16, 2015 at 21:34 #46301Neptin
ParticipantHow do you change the “Create Account” color on hover?
February 17, 2015 at 14:39 #46368Neptin
ParticipantHello, 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 workingI tried this in my child theme and it didn’t work.
February 17, 2015 at 18:35 #46459Laura
ModeratorHello, 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 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 🙂
February 19, 2015 at 05:44 #46642Laura
ModeratorHello, 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 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 🙂
February 19, 2015 at 21:42 #46766Neptin
ParticipantAttached is the screenshot. The button turns pink on hover. I want it a different color.
February 22, 2015 at 06:25 #47077Laura
ModeratorHello, 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 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 🙂
February 22, 2015 at 10:59 #47091Neptin
Participanthere is another screenshot
Attachments:
You must be logged in to view attached files.February 22, 2015 at 16:30 #47145Laura
ModeratorHello, 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 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
The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.