• Resolved lamourcheznous

    (@lamourcheznous)


    Hi everyone,

    I’m still learning to code and I’m having issues. I’ve tried reading through a ton of threads, but to no avail.

    My site is:
    lamourcheznous.com

    I’d like to tweak my blog’s subtitles, or h1 entry-title. I would like to change it to:

    Quicksand
    Colour: #00bdb6
    Possible 120% of its current size.

    For some reason I’ve managed to change the font, but not colour or size. Would anyone be able to let me know why?

    Here’s what I’ve done so far:

    #content h1 {
    color:#00bdb6;
    font-family: ‘Quicksand’, sans-serif;
    size:110%
    }

    a {
    colour:#00bdb6
    }

    <script type=”text/javascript”>
    WebFontConfig = {
    google: { families: [ ‘Quicksand::latin’ ] }
    };
    (function() {
    var wf = document.createElement(‘script’);
    wf.src = (‘https:’ == document.location.protocol ? ‘https’ : ‘http’) +
    ‘://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js’;
    wf.type = ‘text/javascript’;
    wf.async = ‘true’;
    var s = document.getElementsByTagName(‘script’)[0];
    s.parentNode.insertBefore(wf, s);
    })(); </script>

    Thanks!
    Lauren

Viewing 15 replies - 16 through 30 (of 32 total)
  • Thread Starter lamourcheznous

    (@lamourcheznous)

    Maybe because it’s considered a link too?

    It’s working fine for me – try clearing your browser cache.

    Thread Starter lamourcheznous

    (@lamourcheznous)

    Hmm… It isn’t for me. Maybe I need to wait. I tried deleting my cache to no avail.

    You’ve cleared the cache on your site and browser?

    also this is an error:

    media="all"
    img {
    border: 10;
    }

    media=”all” isn’t valid in an external stylesheet and you also need a unit of measure for the border.

    But that isn’t affecting the above.

    Thread Starter lamourcheznous

    (@lamourcheznous)

    I was just experimenting with something; I’ve deleted it now. I’m still very new with this!

    I thought so… I’ll have to work on that I suppose. Thanks for your help up until now!

    So are you seeing the changes? If not, what browser are you using? Can you try another one?

    Thread Starter lamourcheznous

    (@lamourcheznous)

    I tried swapping to firefox and internet explorer (and deleted those caches) but I still don’t see any changes. You see an aqua blue and not a basic blue?

    Thread Starter lamourcheznous

    (@lamourcheznous)

    So I CAN see the changes in my titles in the About Me page and other pages. Maybe it just has something to do with changing an h2 and not just an h1?

    This is the CSS I see as active:

    .entry-header .entry-title {
        color: #00BDB6;
        font-family: 'Quicksand',sans-serif;
        font-size: 22px;
    }

    Did you try clearing SuperCache on your site?

    Just to be sure, are we talking about the article titles?

    Thread Starter lamourcheznous

    (@lamourcheznous)

    I’m talking post titles. Page titles work, but not post titles. Maybe it’s because they are links? The links are the same colour as well. Perhaps that’s why the code isn’t working?

    Thread Starter lamourcheznous

    (@lamourcheznous)

    It must be, because the size is changeable?

    Ah, try this – add the “a”:

    .entry-header .entry-title a {
        color: #00BDB6;
        font-family: 'Quicksand',sans-serif;
        font-size: 22px;
    }

    Thread Starter lamourcheznous

    (@lamourcheznous)

    Ah, ok. I had tried doing that at some point but I don’t think it was in the right position.

    Thread Starter lamourcheznous

    (@lamourcheznous)

    Thank you!!! It works!!

Viewing 15 replies - 16 through 30 (of 32 total)
  • The topic ‘Writing over existing class for h1 subtitle’ is closed to new replies.