CSS not working

  • Unknown's avatar

    hi the suggested changes don’t work
    it is not taking a proper century or apple gothic font and font-weight is not working, iwould imagine that the letter spacing is not working either

    font-family:’Century Gothic’,CenturyGothic,’Apple Gothic’,AppleGothic,sans-serif

    #logo h1 {
    color:#ca1e00;
    font-size:32px!important;
    font-weight:100!important;
    text-decoration:none;
    border-bottom:none;
    letter-spacing:10px!important;
    text-rendering:auto;
    text-align:center!important;
    }

    #logo h2 {
    font-size:24px!important;
    font-weight:100!important;
    text-align:center!important;
    padding:12px 4px 0 0;
    }

    i just tried the !important as nothing seems to work.

    an ideas please?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    First, this needs a selector and needs to end in ; and needs to be wrapped in { and }

    font-family:'Century Gothic',CenturyGothic,'Apple Gothic',AppleGothic,sans-serif

    Maybe like this:

    body {
    font-family:'Century Gothic',CenturyGothic,'Apple Gothic',AppleGothic,sans-serif;
    }

    Then note that any MORE specific rule set in the style.css in the theme for more specific things like “.hentry h1” will override “body” and you’d need to adjust those separately too.

  • Unknown's avatar

    oh that’ll be why.

    Re my earlier change request for comments. Add also a CSS compiler.

    :-)

    why don’t the subsequent lines work they are properly enclosed methinks.

  • Unknown's avatar

    For the other stuff, try “#logo h1 a” and #logo h2 a” selectors instead.

  • Unknown's avatar

    ah see you are even fallible

    should be: “#logo h1 a” and “#logo h2” selectors instead

    now the menu text has changed too …sigh.

    i’ll try and figure that one out myself. At least I can gain credit for doing one bit of it then ;-)

  • Unknown's avatar

    nope i give in again

    i’ve tried
    .header
    ul ul a
    #header
    #nav
    .nav
    ul#menu-main.menu

    no joy

  • Unknown's avatar

    silly me

    ul#menu-main a {stuff}

    obvious really :-)

  • The topic ‘CSS not working’ is closed to new replies.