timtryn wrote:Hi,
First off – Awesome template!!!
I would like to know how to change the roll overs on the "What we do" and "The Team" sections.
To adress hover state of first "What we do" button You could use this css code:
- Code: Select all
.gkIsWrapper-gk_creativity .figcaption > a:hover {background: #FFF;color: #7484FF;}
{place it in override.css and enable use of override.css in template advanced settings)
The code has current look, You could change color, background, add different border etc, or replace it with image sprite.
timtryn wrote:Is it possible to have another image as the roll over in the what we do section.
All other buttons hover state could be addressed with:
- Code: Select all
a.border.bigbutton:hover {}
If You would like to address specific button, then You need to check its parent's unique id or class and build it into css address chain.
timtryn wrote:In the Team section, how do we edit the social icons that only the relevant ones display?
1. Change currently used editor to "Editor - none".
2. Go to Extensions -> module manager, filter the position: "bottom1" and edit module thats name starts with:
"About __Meet our talented team. "
3. Now You will see html code of that module. Each user is created with section:
- Code: Select all
<figure data-fb="https://www.facebook.com/gavickpro" data-twitter="https://twitter.com/gavickpro" data-gplus="https://plus.google.com/+gavickpro/posts" class="animate_queue_element">
<img src="images/demo/about/1.jpg" border="0" alt="Tim Berners" />
<figcaption>
<h3>Tim Berners</h3>
<small>CEO Executive Officer</small> </figcaption>
</figure>
If You remove
- Code: Select all
data-fb="https://www.facebook.com/gavickpro"
link to fb icon will dissapear. If You edit it, You will change what the icon is linking to.