Still problems with css child

  • Polaustere

    #3857

    Hello,

    Could you tell me WHY the changes I made font, radius, width are OK bu why when i do any color modification it doesn’t work ?

    I DON’T want use the graphnene style pane.

    Could you help me one more time ?

    And explain what “ZOOM: 1” means ?

    Thanks

    .sidebar h3 {

    font: bold 16px/20px Times;

    margin: -15px 0 5px -12px;

    padding: 7px 12px;

    width: 60%;

    background: url() left bottom repeat-x #3C9CD2;

    border-bottom: 10px solid #eeeeee;

    -moz-border-radius: 5px 5px 0 0;

    -webkit-border-radius: 5px 5px 0 0;

    border-radius: 5px 5px 0 0;

    border-radius: 5px 50px 0 0;

    color: #fff;

    *display: inline;

    text-shadow: 0 -5px 0 #00000;

    zoom: 1;

    }

    Anonymous

    #26286

    AFAIK, zoom: 1; fixes display issues in IE.

    1. Times: It should be Times New Roman.

    2. You have defined URL for background. But, there is no link to the image. So, remove it.

    3. border-radius: property is declared two times. One with 5px 5px 0 0 radius and another with 5px 50px 0 0.

    Did you know that we don’t have super powers to assume what’s going on your site without actually looking at it? Right. Please provide a link to the site where you have issues.

    Polaustere

    #26287

    So sorry to vaste your time, and perhaps my code is not very clean but “Times” seems working, and the last radius get over the first one, and modify the h3 sider box as well.

    But the point of my question was why background-color and color doesent’t change ? Is the only way is to go to the option graphene pane ? and how I can change the background-color in the CSS.

    Sorry for my not verry fluent english and thanks for your answers.

    My site is not yet avalable, I’m working with easy PHP.

    .sidebar h3 {

    font: bold 16px/20px Times;

    margin: -15px 0 5px -12px;

    padding: 7px 12px;

    width: 60%;

    background-color: #ffffff;

    border-bottom: 10px solid #eeeeee;

    -moz-border-radius: 5px 50px 0 0;

    -webkit-border-radius: 5px 50px 0 0;

    border-radius: 5px 50px 0 0;

    *display: inline;

    text-shadow: 0 -5px 0 #00000;

    zoom: 1;

    }

    Mod

    Kenneth John Odle

    #26288

    If you have previously defined these attributes in the Graphene Options, you will need to clear them. Graphene Options loads after the child theme stylesheet.

    To clear, just click on “Clear” next to each option.

    how I can change the background-color in the CSS

    p

    The correct property is background not background-color.

    last radius get over the first one, and modify the h3 sider box as well.

    Remember, the “C” in “CSS” stands for “cascading” — you can declare something as many times as you want, but it’s the last declaration that is going to be applied.

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

  • You must be logged in to reply to this topic.