Guitar image and Register Now button

Best WordPress theme for festivals or other events with responsive, clean and unique design.
GK User
Wed Feb 20, 2013 12:03 pm
How do I remove the guitar image or add my own? And where do I change the Register Now button?
User avatar
Fresh Boarder

GK User
Wed Feb 20, 2013 8:16 pm
Hi,

If you want to replace the guitar image, please modify this fragment in the extensions.css file:

Code: Select all
.gk-animation .gk-guitar {
background: transparent url('../images/guitar.png') no-repeat 0 0;
height: 419px;
position: absolute;
right: 0;
text-indent: -9999px;
top: 30px;
width: 187px;
z-index: 2;
}


or you can remove the gk-guitar element form the custom text widget with header.

The register now button is defined in the template.css file as:

Code: Select all
#gk-register a {
background: #4b4b4b;
background: rgba(75, 75, 75, 0.52);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
color: #fff;
font-size: 24px;
font-weight: 800;
line-height: 24px;
padding: 8px 22px;
text-transform: uppercase;
-webkit-transition: background .3s ease-out;
-moz-transition: background .3s ease-out;
-o-transition: background .3s ease-out;
transition: background .3s ease-out;
}
User avatar
Administrator

GK User
Thu Feb 21, 2013 1:39 pm
Thank you very much..

I've just put the Register code in a comment /* */, but now it just shows Register Now as normal text instead of in a button. Where can I find the Register now text?
User avatar
Fresh Boarder

GK User
Thu Feb 21, 2013 1:51 pm
This button is generated in the layouts/header.php file with this fragment:

Code: Select all
<?php if(get_option($tpl->name . "_register_button", 'Y') == 'Y') : ?>
<div id="gk-register">
    <a href="<?php echo get_option($tpl->name . "_register_link", '#'); ?>"><?php _e('Register Now', GKTPLNAME); ?></a>
</div>
<?php endif; ?>
User avatar
Administrator

GK User
Wed Aug 14, 2013 10:49 pm
I've looked in my FTP backend and the wordpress pannel and I can't find this "extensions.css" help? :(

dziudek wrote:Hi,

If you want to replace the guitar image, please modify this fragment in the extensions.css file:

Code: Select all
.gk-animation .gk-guitar {
background: transparent url('../images/guitar.png') no-repeat 0 0;
height: 419px;
position: absolute;
right: 0;
text-indent: -9999px;
top: 30px;
width: 187px;
z-index: 2;
}


or you can remove the gk-guitar element form the custom text widget with header.

The register now button is defined in the template.css file as:

Code: Select all
#gk-register a {
background: #4b4b4b;
background: rgba(75, 75, 75, 0.52);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
color: #fff;
font-size: 24px;
font-weight: 800;
line-height: 24px;
padding: 8px 22px;
text-transform: uppercase;
-webkit-transition: background .3s ease-out;
-moz-transition: background .3s ease-out;
-o-transition: background .3s ease-out;
transition: background .3s ease-out;
}
User avatar
Fresh Boarder

GK User
Thu Aug 15, 2013 7:56 pm
Hi melodiem,
extensions.css is located in wp-content/themes/Fest/css directory.
User avatar
Moderator


cron