• Hi everyone,

    I took the plunge today and started a blog – https://www.glamviews.com and as a non-techie, non-computer person, have spent 3 hours trying to find the answer to this question in forums and support pages:

    How can I change the font style and color at the very top center of the page? Basically, GLAMVIEWS.COM is in ugly black plain font in all caps! I hate it.

    Otherwise, I LOVE this free theme, called “MT dark 2.0” and would like to try to keep it.

    Thanks to any and all for your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • You would need to edit style.css and change:

    #header h1 {
    color:#2F261A;
    margin:0;
    padding:0;
    }

    Change ‘color` to the color code that you want to use (in hexadecimal or RGB format). You can change the font by adding something like:

    font-family: georgia, palatino, times 'times new roman', serif;

    Thread Starter glamvie1

    (@glamvie1)

    Thanks esmi, I got the font changed and the color changed, but one thing I can’t see is where to tell it not to use all caps.

    I would like the title of the website to be “GlamViews.com” not “GLAMVIEWS.COM” as though I’m screaming at my visitors. That would be so unglamorous of me.

    If you can advise how to change the all caps to a mix of cases, I’d really appreciate it!

    Many thanks.

    Try adding:

    font-variant:normal !important;

    to #header h1.

    Or go to line 76 of style.css:

    h1, h2, h3, h4, h5, h6{
    	font-variant:small-caps!important;
    	font-weight:normal!important;
    	letter-spacing:0.076em!important;
    }

    The line font-variant:small-caps!important; is making all headers on the site use capital letters. Delete it or comment it out and it will prevent the behaviour on the title but also change the look of post titles and any other headers.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to edit title in theme? I’m using MT dark 2.0’ is closed to new replies.