Change colour of separatorEvents <div class="gk-venue">

Professionally designed and responsive events Joomla template to launch your event based website.
GK User
Mon Nov 24, 2014 11:04 pm
Hi guys and Gals,

I would like to know if there is a way I can change the colour of the separator in the <div class="gk-venue"> from grey to a clear colour so that I can make it transparent.

How can I achieve this?

My site is www.goalice.co.uk/home/

Thanks

Amraj
User avatar
Fresh Boarder

teitbite
Tue Nov 25, 2014 9:24 am
Please add this code to override.css and make sure override is enabled in template settings.

Code: Select all
.gk-venue > dl {
    border-left: 1px solid rgba(255, 255, 255, 0.75);
}
User avatar
Moderator

GK User
Tue Nov 25, 2014 10:15 am
No luck I'm afraid.

Here is what my CSS override is looking with your suggested code:

Code: Select all
#gkTop1 .box,
#gkTop2 .box {
clear: both!important;
width: 100%!important;
}
.gk-venue > dl {
    border-left: 1px solid rgba(255, 255, 255, 0.75);
}
User avatar
Fresh Boarder

GK User
Tue Nov 25, 2014 10:27 am
Ignore my previous post this works fine. I forgot to change the alpha value from 0.75 to 0 for full transparency.
User avatar
Fresh Boarder

teitbite
Thu Nov 27, 2014 9:21 am
Hi

A value of 0 is invisibility. Are You sure You want this to disappear ? If yes than it's better to just use:

Code: Select all
.gk-venue > dl {
    border-left: none;
}
User avatar
Moderator


cron