.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;
}#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;
}<?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; ?>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;
}
