Text under header
- The topic ‘Text under header’ is closed to new replies.
Need help? Check out our Support site, then
Hi, interested to see if I could put some text (Club name) under header picture with some black space between header and featured content picture, in same color and font as headlines being used currently.
For now I created picture with text but it’s not good. Could you please advice how to make text in same font and color.
The blog I need help with is: (visible only to logged in users)
Hi – thanks for the message. Using custom CSS you could do something to fake what you want.
a.header-image:after {
content: "name here";
font-size: 40px;
font-family: "ff-market-web-1","ff-market-web-2",cursive;
margin: 10px 0 10px 0;
}
The content should be your name. The font size changes the size of the text.
For the margin the first 10px is the space at the top and the second 10px is the space at the bottom.
Thanks – Ben