Page 1 of 2 12 LastLast
Results 1 to 10 of 17
  1. #1
    Join Date
    Jan 2011
    Posts
    36
    Plugin Contributions
    0

    Default CSS3 across browsers?

    Hi there.

    I'm getting there with my site but notice differences when comparing browsers. I built in firefox and it seems to be ok there. One problem is no radial gradient in the body on other browsers (I'm using just a background colour there). Another is the lacko Nav wrapper appearance. That is no linear-gradient. Also rounded CSS corners using border-radius doesn't work in IE. I'm trying to use -webkit- to get things to work in Opera with limited success. Can anyone point me in the right direction here?

    Link here if it helps:

    www.chileno.co.uk

    Cheers in advance
    Last edited by Kim; 28 Jun 2011 at 02:28 AM.

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: CSS across browsers

    One problem is no radial gradient in the body on other browsers (I'm using just a background colour there).
    That would be a solid color - - no gradient
    Also rounded CSS corners using border-radius doesn't work in IE. I'm trying to use -webkit-
    I think you will find spotty support across browsers for that
    Images for the rounded effect for the most part display in all
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: CSS across browsers

    Quote Originally Posted by mojo13 View Post
    Hi there.

    I'm getting there with my site but notice differences when comparing browsers. I built in firefox and it seems to be ok there. One problem is no radial gradient in the body on other browsers (I'm using just a background colour there). Another is the lacko Nav wrapper appearance. That is no linear-gradient. Also rounded CSS corners using border-radius doesn't work in IE. I'm trying to use -webkit- to get things to work in Opera with limited success. Can anyone point me in the right direction here?

    Link here if it helps:

    www.chileno.co.uk

    Cheers in advance
    The following should help on the linear gradients: will not work for ie until v10

    -moz-linear-gradient(#F4F2F2, #E0E0E0);
    -webkit-linear-gradient(#F4F2F2, #E0E0E0);
    -webkit-gradient(linear, center top, center bottom, from(#F4F2F2), to(#E0E0E0));
    -ms-linear-gradient(#F4F2F2, #E0E0E0); /*for ie10 */
    -o-linear-gradient(#F4F2F2, #E0E0E0);

    following should handle the rounded corners: works only in ie9

    -moz-border-radius:0 0 10px 10px;
    -webkit-border-radius:0 0 10px 10px;
    border-radius:0 0 10px 10px;

  4. #4
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: CSS across browsers

    Thanks Clyde!!
    Zen-Venom Get Bitten

  5. #5
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: CSS across browsers

    Quote Originally Posted by mojo13 View Post
    Hi there.

    I'm getting there with my site but notice differences when comparing browsers. I built in firefox and it seems to be ok there. One problem is no radial gradient in the body on other browsers (I'm using just a background colour there). Another is the lacko Nav wrapper appearance. That is no linear-gradient. Also rounded CSS corners using border-radius doesn't work in IE. I'm trying to use -webkit- to get things to work in Opera with limited success. Can anyone point me in the right direction here?

    Link here if it helps:

    www.chileno.co.uk

    Cheers in advance
    following should handle the radial gradients: will not work in ie or opera

    /* Firefox 3.6+ */
    background: -moz-radial-gradient(circle, #1a82f7, #2F2727);
    /* Safari 4-5, Chrome 1-9 */ /* Can't specify a percentage size? Laaaaaame. */
    background: -webkit-gradient(radial, center center, 0, center center, 460, from(#1a82f7), to(#2F2727));
    /* Safari 5.1+, Chrome 10+ */
    background: -webkit-radial-gradient(circle, #1a82f7, #2F2727);
    /* Opera cannot do radial gradients yet */

  6. #6
    Join Date
    Jan 2011
    Posts
    36
    Plugin Contributions
    0

    Default Re: CSS across browsers

    thanks people, I appreciate the help. Will try these suggestions and post back

  7. #7
    Join Date
    Jan 2011
    Posts
    36
    Plugin Contributions
    0

    Default Re: CSS across browsers

    great that fixed my Opera view.
    background-image: -o-linear-gradient(#6161AB 0%, #040629 10%, #100B61 99%);

    I had this but didn't seem to work:

    background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #6161AB),
    color-stop(0.10, #040629),
    color-stop(0.99, #100B61)
    );

    The radial for the background isn't too important, I'll just wait for Opera to catch up.

    I'll have a go at IE now, thanks muchly!

  8. #8
    Join Date
    Jan 2011
    Posts
    36
    Plugin Contributions
    0

    Default Re: CSS across browsers

    So, to update, I tried in IE but nothing works there at all. That is no round corners, no linear gradient (but can wait for IE10, although I tested in Windows Internet Explorer Platform Preview but nothing), margins are off and my box-shadow doesn't work either:

    box-shadow:10px 12px 35px 1px rgba(10, 10, 10, 1);
    -moz-box-shadow:10px 12px 35px 1px rgba(10, 10, 10, 1);
    -webkit-box-shadow:10px 12px 35px 1px rgba(10, 10, 10, 1);


    These work in firefox and opera anyway.

  9. #9
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: CSS across browsers

    Quote Originally Posted by mojo13 View Post
    So, to update, I tried in IE but nothing works there at all. That is no round corners, no linear gradient (but can wait for IE10, although I tested in Windows Internet Explorer Platform Preview but nothing), margins are off and my box-shadow doesn't work either:

    box-shadow:10px 12px 35px 1px rgba(10, 10, 10, 1);
    -moz-box-shadow:10px 12px 35px 1px rgba(10, 10, 10, 1);
    -webkit-box-shadow:10px 12px 35px 1px rgba(10, 10, 10, 1);


    These work in firefox and opera anyway.
    rounded corners, box shadow will work in ie9 but not in other versions.

    linear gradients will not work in ie (at least until version 10)

  10. #10
    Join Date
    Jan 2011
    Posts
    36
    Plugin Contributions
    0

    Default Re: CSS3 across browsers

    Thanks Clyde.

    Yes, I should have said I am testing in IE9 and no joy at all. I think my CSS file must have a conflict in it or sthing - to not even get rounded corners going there. The gradient will have to wait for IE10 - when is that - like next year? If I find out what works I'll post back.

    Thanks again

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 CSS3 Buttons [support thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 148
    Last Post: 25 Oct 2017, 07:50 PM
  2. v154 Help with CSS3 Hover Effects Installation
    By Amanda McNair in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 1 Feb 2015, 11:41 PM
  3. CSS3 Breadcrumbs with 4 Variations
    By picaflor-azul in forum All Other Contributions/Addons
    Replies: 12
    Last Post: 11 Aug 2013, 07:39 PM
  4. CSS3 PIE Setup help
    By DivaVocals in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 16 Mar 2013, 03:15 PM
  5. Display 2 subcategories across and 3 products across per subcatagory
    By unclemantis in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 13 Sep 2009, 07:52 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR