Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #55812
    Michael
    Member

    I tried placing the following code in both the custom css and a child theme and in both scenarios it worked on Firefox 37..0.1 but not Safari 5.1.1 on a Mac. Any thoughts?

    #branding #access,
    #colophon #access-footer,
    #branding ul.menu ul a {
    background: linear-gradient(#3D3D3D, #000000) repeat scroll 0 0 transparent;
    }

    The site is catholicproductions.com/cpblog

    #55837
    Sakin
    Keymaster

    @Michael: Your css should be as below:

    #branding #access,
    #colophon #access-footer,
    #branding ul.menu ul a {
    	background: -moz-linear-gradient(#3d3d3d, #000000);
    	background: -o-linear-gradient(#3d3d3d, #000000);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#3d3d3d), to(#000000)); /* older webkit syntax */
    	background: -webkit-linear-gradient(#3d3d3d, #000000);
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Appearance > Theme Options > Custom CSS not working in all browsers’ is closed to new replies.