• Resolved Deewan_Goose

    (@deewan_goose)


    Hey guys I’m pretty new to this whole thing so forgive me if my question seems a little daft.

    When I go to the identity section to customize my title to fit my site, I’ve noticed 2 annoying things I have no clue how to change.
    1. It’s stuck in caps, in a given font, as a given text size which I have no idea how to edit.
    2. If it’s longer than a certain amount of characters (12ish) it goes down to the line underneath itself instead of continuing to the right. This just looks ugly on the page.

    Is there a section in the dashboard where I can edit these things without having to go messing around with code? It’s driving me nuts.

Viewing 1 replies (of 1 total)
  • Hello,

    You have to solve these issues with CSS code, Don’t worry it is very simple to do.
    You need to just open your “style.css” and put this code.
    Just open your dashboard and go to “Appearance > Editor” and open “style.css” file. then put code in the end of file

    1. This code will help you to manage your logo text.

    #header .logo h1 {
        color: #222;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 42px;
        text-transform: none;
    }

    With this code you can change ‘color’, ‘font’ and ‘font size’.

    2. By changing font size given in above code you can manage to show logo text in one line.

    If you need more help then feel free to ask, i will help you.

    Thank You

Viewing 1 replies (of 1 total)
  • The topic ‘Customizing site title (in identity) issues’ is closed to new replies.