font size/centering/spacing/background image

  • Unknown's avatar

    –how do i change the font size of the page titles and of the banner links?

    –how do i center the page titles?

    –how do i use extended spacing for text in a page title or banner (or the body), i.e. H E L L O H O W A R E Y O U

    –how do i change the background image for the page and banner itself? (not just for the exterior border)

    thanks much

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi Jack,

    Just so I’m clear, do you want to change the font size, alignment, and spacing of only page titles, or the titles for pages and posts?

    Let me know, and I’ll write up the CSS that’ll help you make all the changes you mention.

  • Unknown's avatar

    thank you. i want to change the font size, alignment and spacing of only page titles.

    thanks

  • Unknown's avatar

    The following should give you a good start. You can change the values, of course:

    .page .entry-header {
        text-align: center;
        letter-spacing: 1px;
    }
    
    .page .entry-title {
        font-size: 150%;
    }
    
    #page {
       background-image: url('http://my_image_url/image.jpg');
    }

    As for “banner links”, can you give me an example of what you mean exactly?

  • Unknown's avatar

    thank you.

    how do i make a page title ALL CAPS?

    also, how do i alter the appearance of the text of the title and subtitle of the site itself, and of the links in the banner below it?

  • Unknown's avatar

    Try updating your CSS as such:

    .page .entry-title {
        font-size: 150%;
        text-transform: uppercase;
    }

    As for altering the site title, tagline, and navigation, you can use something like this:

    .site-title,
    .site-description,
    .main-navigation {
        font-size: 150%;
        text-transform: uppercase;
    }

    Let me know if you need further and specific help with this!

  • Unknown's avatar

    thank you. i still don’t know how to change the font size/spacing of the actual title of the overall site.–and the subtitle beneath it

  • Unknown's avatar

    i still don’t know how to change the font size/spacing of the actual title of the overall site.–and the subtitle beneath it

    The snippets I provided should work.

    For site title and description (or tagline):

    .site-title,
    .site-description {
        font-size: 150%;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    As with the other changes, you can add these to your CSS by following this guide:
    https://en.support.wordpress.com/custom-design/editing-css/

    If you’re still running into issues, can you give me a specific example of what you want to change, and specifically what changes should be made?

  • Unknown's avatar

    thanks. but this changes the title and the banner links. any way to just isolate the title?

  • Unknown's avatar

    You’re currently using the following CSS:

    .site-title,
    .main-navigation {
    	font-size: 80%;
    	letter-spacing: 2px;
    	text-transform: uppercase;
    }
    
    .entry-content {
    	font-size: 120%;
    }
    
    .page .entry-header {
    	text-align: center;
    	letter-spacing: 3px;
    }
    
    .page .entry-title {
    	font-size: 200%;
    	text-transform: uppercase;
    }

    If you don’t want any styles to apply to the navigation menu, then you’d simply use:

    .site-title {
    	font-size: 80%;
    	letter-spacing: 2px;
    	text-transform: uppercase;
    }
    
    .entry-content {
    	font-size: 120%;
    }
    
    .page .entry-header {
    	text-align: center;
    	letter-spacing: 3px;
    }
    
    .page .entry-title {
    	font-size: 200%;
    	text-transform: uppercase;
    }

    You might like this guide, which helps you with CSS basics.
    https://en.support.wordpress.com/custom-design/css-basics/

  • The topic ‘font size/centering/spacing/background image’ is closed to new replies.