Best way to change the stars to text

Best WordPress theme for festivals or other events with responsive, clean and unique design.
GK User
Wed Apr 23, 2014 10:35 pm
What is the best way to change the stars below the Event title to my own text? I would like it to have the location of our event there instead of the stars.

Thanks in advance.
- Joey
User avatar
Fresh Boarder

GK User
Thu Apr 24, 2014 7:33 am
Hi,

You have to edit text widget from Header widget area and replace div with stars:
Code: Select all
<div class="gk-stars" data-start="{'opacity':0}" data-end="{'opacity':1}" data-delay="1000" data-time="500">********</div>

with this code:

Code: Select all
<div class="gk-text" data-start="{'opacity':0}" data-end="{'opacity':1}" data-delay="1000" data-time="500">your slogan</div>


Then you can add this code into css/override.css file (first enable this override option from Template Options -> Advanced tab):
Code: Select all
.gk-text {
text-align: center;
}

to center your slogan.
User avatar
Moderator

GK User
Tue May 06, 2014 8:06 am
Awesome! Thank you!
User avatar
Fresh Boarder


cron