Custom Header

  • Unknown's avatar

    How can I add some words right under my custom header ‘Ms Dynasty’?
    I would like to change it daily. Is there a CSS code for this?

    I know that I can display it above by clicking the option in Themes, but I do not wish to use that. I would rather have it below my custom header.

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

  • Unknown's avatar

    How can I add some words right under my custom header ‘Ms Dynasty’?

    There is more than one way to do something like that. Here is one possible way:

    .main-navigation:before {
    	content: "Put your text here.";
    	display: block;
    	padding-bottom: 10px;
    	text-align: center;
    }

    You can play around with the text, numbers, and alignment values to change it.

    Another way to do it would be to turn the title and tagline back on in your Appearance → Header page and then use CSS to move those to different locations using CSS. That way, you could use the main Settings page to change the text out by editing the Tagline and that would probably be an easier way to change the text often.

  • The topic ‘Custom Header’ is closed to new replies.