which WP th. allow header and title adjust..

5 replies
I am using the standard one right now Twenty Eleven but It doesn't allow me to tweak the size of the title and header. Any themse allow this?

Thx
#adjust #header #title
  • Profile picture of the author sloanjim
    geeps no-one?

    Thx
    Signature

    15 Minute Forex Bar Trading System Free at
    http://www.fxscalpingmethod.com

    {{ DiscussionBoard.errors[6768118].message }}
  • Profile picture of the author KirkMcD
    Nothing prevents you from doing it manually.
    {{ DiscussionBoard.errors[6768862].message }}
  • Profile picture of the author sloanjim
    how do I do that?
    Signature

    15 Minute Forex Bar Trading System Free at
    http://www.fxscalpingmethod.com

    {{ DiscussionBoard.errors[6769376].message }}
  • Profile picture of the author ALicenseToCode
    It's going to be in the stylesheet for your theme. You need to get the style class that's being applied to your header and then edit it in your theme's stylesheet.

    If you don't know what CSS is or how to do it, you should just google something like "Beginner CSS Tutorial". After that you should get the developer extension for the browser you use by googling [Your Browser] Developer Extension. All dev extensions have the ability for you to view the info of any element on your page, such as your header text.

    Once you find the CSS Class that's being applied to your header you just edit the stylesheet for your theme. Learning how to do this will open up the ability for you to change the appearance of anything on your blog!
    {{ DiscussionBoard.errors[6771945].message }}
  • Profile picture of the author tomm
    you have to edit your styles.css file

    to change the title size
    find these lines in styles.css:

    Code:
    #site-title a {
    	color: #111;
    	font-size: 30px;
    	font-weight: bold;
    	line-height: 36px;
    	text-decoration: none;
    }
    and change the font-size: 30px to whatever value you like, like 20px to make it smaller

    to change the header size
    find these lines in styles.css:

    Code:
    #site-description {
    	color: #7a7a7a;
    	font-size: 14px;
    	margin: 0 270px 20px 0;
    }
    change the margin: 0 270px 20px 0; part to your liking, specially the 20px part, increase it to 30px to make it bigger or 10px to make it smaller for example.

    find these lines in styles.css:

    Code:
    #site-title {
    	margin-right: 270px;
    	padding: 10px 0 0;
    }
    change the padding: 10px 0 0; to something like padding: 0 to make it smaller

    HTH
    {{ DiscussionBoard.errors[6772487].message }}

Trending Topics