-
AuthorPosts
-
November 20, 2014 at 8:04 am #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 Friendchavan
- Join date:
- October 2014
- Posts:
- 4612
- Downloads:
- 0
- Uploads:
- 110
- Thanked:
- 1440 times in 1290 posts
November 20, 2014 at 9:57 am #555915create 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 */
1 user says Thank You to chavan for this useful post
-
AuthorPosts
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