• Hi! Someone know how i resize the title in a post? I want it to be smaller πŸ™‚

    My theme is Twenty Eleven 1.3
    Sorry for my english.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Use CSS. The title might have a class=”entry-header” or something similar, it depends on the theme. You can examine it using firebug or the Safari Web Inspector or IE Developer Tools to find out how it is styled at present.

    In Twenty Eleven, the class for the title is “entry-title” and it’s style is set to 26px around line 730 of style.css. You can either modify the style in the theme or set up a child theme that consists or a style.css file that will override the one in the parent theme.

    /peter

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    set up a child theme that consists or a style.css file that will override the one in the parent theme.

    You really, Really, REALLY want to follow that last part of the advice. Make a child theme now and save yourself pain an suffering later when the theme gets updated.

    It’s easy to do and all you are modifying is the CSS.

    http://codex.wordpress.org/Child_Themes

    Thread Starter ifreak

    (@ifreak)

    I’m not so good in CSS, is it hard to make a child theme?

    Jan’s link shows how to set up a child theme. It’s easy and CSS is worth learning. All you need in the css is
    .entry-title {font-size:20px;}
    to make it 20 pixels high.

    Thread Starter ifreak

    (@ifreak)

    Thanks for help!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Resize the title’ is closed to new replies.