hi is it possible through css to have a gradient background in the logo area ?
hi,
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
http://www.w3schools.com/css/css3_gradients.asp
example:
#header_main .logo {
background: -webkit-linear-gradient(red, blue); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(red, blue); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(red, blue); /* For Firefox 3.6 to 15 */
background: linear-gradient(red, blue); /* Standard syntax */
}
cheers
Hey!
You can create gradient here – http://www.colorzilla.com/gradient-editor/
and then add following code to Quick CSS in Enfold theme options under General Styling tab
#header_main {
background: -webkit-linear-gradient(red, blue); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(red, blue); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(red, blue); /* For Firefox 3.6 to 15 */
background: linear-gradient(red, blue); /* Standard syntax */
}
Best regards,
Yigit