test
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • mvaughan Friend
    #202908

    Okay so I need to make my menu into gradient blue.
    I’ve tried creating a custom.css as well as updating the template.css
    The template.css pseudo worked in the firebug preview of the site, but it’s not loading on the site.
    I know some things have changed in the past couple years so where on earth can I make this change so it loads this blasted gradient?

    background: #2989d8; /* Old browsers */
    background: -moz-linear-gradient(top, #2989d8 0%, #0066cc 53%, #052941 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2989d8), color-stop(53%,#0066cc), color-stop(100%,#052941)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #2989d8 0%,#0066cc 53%,#052941 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #2989d8 0%,#0066cc 53%,#052941 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #2989d8 0%,#0066cc 53%,#052941 100%); /* IE10+ */
    background: linear-gradient(to bottom, #2989d8 0%,#0066cc 53%,#052941 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#2989d8′, endColorstr=’#052941′,GradientType=0 ); /* IE6-9 */

    chavan Friend
    #555915

    create custom.css and add the above code to it and overide the existing css using !important;

    like this

    background: #2989d8 !important; /* Old browsers */
    background: -moz-linear-gradient(top, #2989d8 0%, #0066cc 53%, #052941 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2989d8), color-stop(53%,#0066cc), color-stop(100%,#052941)) /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #2989d8 0%,#0066cc 53%,#052941 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #2989d8 0%,#0066cc 53%,#052941 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #2989d8 0%,#0066cc 53%,#052941 100%); /* IE10+ */
    background: linear-gradient(to bottom, #2989d8 0%,#0066cc 53%,#052941 100%); /* W3C */
    filter: progidXImageTransform.Microsoft.gradient( startColorstr='#2989d8', endColorstr='#052941',GradientType=0 ); /* IE6-9 */

    mvaughan Friend
    #558195

    brilliant, thank you!

Viewing 3 posts - 1 through 3 (of 3 total)

This topic contains 3 replies, has 2 voices, and was last updated by  mvaughan 10 years ago.

We moved to new unified forum. Please post all new support queries in our New Forum