Hello,
Thanks for the tip.
I have the css file, I know where to put the override code, but I'm not sure what the surrounding code should be.
My code starts off with this:
- Code: Select all
<table cellpadding=0 cellspacing=0 height=94 width=150 style="font-size:0px;height:94;width:150"><tr><td><table cellpadding=0 cellspacing=0 height=94 width=50 bgcolor="#ffffff" style="font-
The default code in the template appears to be this
- Code: Select all
#gkLogo.cssLogo {
background-color: #4d90fe;
}
#gkLogo.cssLogo {
background: #4d90fe url('../images/logo.png') no-repeat 0 0;
height: 107px;
margin: 0;
width: 124px;
}
#gkLogo {
height: 35px;
margin: 5px 30px 0 0;
padding: 0;
text-indent: -999em;
text-shadow: none;
width: 140px;
display: block;
float: left;
-webkit-transition: background-color .3s linear;
-moz-transition: background-color .3s linear;
-ms-transition: background-color .3s linear;
-o-transition: background-color .3s linear;
transition: background-color .3s linear;
}
1. What parts of the original code to I leave, what parts to I delete and replaced with my new code. For example, should I strip the original code back to this
- Code: Select all
#gkLogo.cssLogo {
}
and place my code between the '}' and '{' etc?
I'm still learning about code and appreciate your patience
Kind regards
Drew