Change color

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue Dec 02, 2014 9:08 pm
Reply with quote
Report this post
Hi,

1. How do i change "what we do" and "get in touch" font color when you hover over them?

2. In the contact module where you have pic of the team when you hover over social media icons how to change color of them?

3. In the same contact module how to substitute g+ icon to the email icon (over team picture)?

Thank you!

www.joinchand.com
User avatar
Fresh Boarder

GK User
Tue Dec 02, 2014 9:42 pm
Reply with quote
Report this post
1. - you mean in menu or in any other place on the page? Could you please create a screenshot and mark those elements on it?
2. Please edit: /templates/gk_creativity/css/override.css and add at its end:
Code: Select all
.gkTeamOverlay > a:before {
color: #fff;
}

Now modify #fff to your liking.
Remember to enable "CSS override" in template settings - advanced section.
User avatar
Moderator

GK User
Tue Dec 02, 2014 9:48 pm
Reply with quote
Report this post
3. Please edit: /templates/gk_creativity/css/override.css and add at its end:
Code: Select all
.gkContactGplusIcon:before {
   content: '\f003';
}

Remember to enable "CSS override" in template settings - advanced section.
User avatar
Moderator

GK User
Wed Dec 03, 2014 11:23 am
Reply with quote
Report this post
Cyberek wrote:1. - you mean in menu or in any other place on the page? Could you please create a screenshot and mark those elements on it?


hovericon.JPG


Thank you for the rest, i will try it and let you know!
User avatar
Fresh Boarder

GK User
Wed Dec 03, 2014 4:17 pm
Reply with quote
Report this post
Cyberek wrote:2. Please edit: /templates/gk_creativity/css/override.css and add at its end:
Code: Select all
.gkTeamOverlay > a:before {
color: #fff;
}

Now modify #fff to your liking.
Remember to enable "CSS override" in template settings - advanced section.


Hi i tried this code, but doesnt seem to work.
Just to make sure i explained it correctly, i need to change the hover over color of the social buttons over the team pictures. See attachment.

And then i asked how to put email icon in the place of google+ icon (same attached picture), and the code did not work either. Any ideas?

Cyberek wrote:3. Please edit: /templates/gk_creativity/css/override.css and add at its end:
Code: Select all
.gkContactGplusIcon:before {
   content: '\f003';
}

Remember to enable "CSS override" in template settings - advanced section.


Thank you!
User avatar
Fresh Boarder

GK User
Wed Dec 03, 2014 5:06 pm
Reply with quote
Report this post
To modify the hover background colour please add this to override.css:
Code: Select all
.gkTeamOverlay a:hover {
background: #d87334;
}
and replace the colour code with your own.

And if it goest do g+ icon - i thought you are referring to contact form part...
Code: Select all
.gkTeamOverlay a[data-type="gplus"]:before {
content: '\f003';
height: 48px;
line-height: 48px;
width: 48px;
}
User avatar
Moderator

GK User
Fri Dec 05, 2014 11:25 am
Reply with quote
Report this post
Sweet! That worked like magic! Thank you!

I still need to figure out the font hover over color in "What we do" button i the intro slide.

Is it a:hover { background: #ffffff; }, i should work with or is it font? See attachements

Thank you for all the help!
User avatar
Fresh Boarder

GK User
Fri Dec 05, 2014 1:39 pm
Reply with quote
Report this post
Code: Select all
.gkIsWrapper-gk_creativity .figcaption > a:hover {
background: #fff !important;
color: #7484ff !important;
}

Please change above colours to your liking and add this code to override.css.
User avatar
Moderator

GK User
Fri Dec 05, 2014 3:06 pm
Reply with quote
Report this post
Perfect! That works like charm!

Thank you for help.

P.S Not sure how to mark the post Solved.
User avatar
Fresh Boarder

GK User
Sat Dec 06, 2014 10:14 am
Reply with quote
Report this post
W simply left posts open here and do not mark them as solved ;)
If you will have any other questions, feel free to post new forum threads.
User avatar
Moderator


cron