Forums

Want lower and upper case Titles in Theme -- Only get all upper (3 posts)

  1. TheBearEconomy
    Member
    Posted 9 months ago #

    Using the Brunelleschi theme right now and do not know code. I would like to safely be able to change the Title of the blog and its Pages to upper and lower case. Do any of you know how I can do this? I want it changed so that I can make my title TheBearEconomy rather than THEBEARECONOMY. Right now I have to separate the words, which is fine, but because it is Internet based, I rather brand the blog with the l/w case name and/or add .com to it.

    This is also happening on all Pages, I wish these template theme authors would have font, bold, italic, and upper/lower case options avail.

  2. alchymyth
    The Sweeper
    Posted 9 months ago #

    for the blog title, edit style.css, nearly half way down:

    #site-title a {
        color: #000;
        font-weight: normal;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    remove text-transform: uppercase;

    the pages title and menu are (as far as i can see) not done by css; check if there is a filter function in functions.php of the theme, acting on 'the_title'

  3. TheBearEconomy
    Member
    Posted 9 months ago #

    Thank you very much Alchymyth and such a speedy response too -- it worked! I did not try the functions.php you mentioned, I am not sure I found anything like that in there. They are all php, except for the following css files:

    RTL Stylesheet
    (rtl.css)
    Stylesheet
    (style.css)
    Visual Editor RTL Stylesheet
    (editor-style-rtl.css)
    Visual Editor Stylesheet
    (editor-style.css)

    Now just need to do the same for tag line and for page titles too. Any way to change font type as well? Man I wish I knew code as there are some other quirks too, mainly with this theme and Facebook and it has no place to add excerpts, I had to add Social Graph Protocol, but thinnk that is just for Facebook and not for feeds and search engines. This theme though is one of the few that have three col and even a bottom area for widgets.

    Thanks again.

Reply

You must log in to post.

About this Topic