Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #369463

    hi is it possible through css to have a gradient background in the logo area ?

    #369475

    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

    #369519

    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

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.