Adding my name to the home page
-
I would like to add my name on the home page, so people know who is the author of the blog right of the bat. Is there a way to do that, without putting my name on tagline or tittle?
Thank you!The blog I need help with is: (visible only to logged in users)
-
It is strange that your theme doesn’t display the site description, but you can work around this with CSS and add some text to your header by copying this into the CSS section of the customiser:
.site-title:after { content: "CSS site description"; margin-left: 1em; font-size: 0.6154em; font-weight: normal; }If the text you use is pretty long you might want it to drop to a new line on tiny mobile screens, so it’s not split in the middle, which you can do by adding this:
@media screen and (max-width:360px) { .site-title:after { display: block; margin: 0; } }
- The topic ‘Adding my name to the home page’ is closed to new replies.