Font Size
- The topic ‘Font Size’ is closed to new replies.
Need help? Check out our Support site, then
Hello Elma,
I need help with the font size, i need that the font of the descrption in the home page and in the “stalk me” page, has the same size as the font in the “about” page.
I have to put any code in the css customize?
The blog i need help with is https://ivanwillenberg.com/
hope you can answer me.
thanks!
The blog I need help with is: (visible only to logged in users)
Hi Ivan,
I’m so sorry for my late reply. Could you try to add the following custom CSS:
@media screen and (min-width: 1023px) {
.intro-slogan {
font-size: 32px;
font-size: 2rem;
line-height: 1.5;
}
}
Best, Ellen
Hi Ellen,
Thanks for your help, It worked but only for the home page.
I need the text “For Work, inquires, or to go for a beer:”, in the stalk me page, have the same size as the text of the home page and about.
Is it possible to remove the text “stalk me” at the beginning of the page, but not from the menu?
I hope yo can answere me.
Best, Iván
Hi Iván,
I’m so sorry for my late reply. Can you please try the following custom CSS:
@media screen and (min-width: 1023px) {
.intro-slogan,
.intro {
font-size: 32px !important;
font-size: 2rem !important;
line-height: 1.5 !important;
}
.page-id-129 .entry-header {display: none;}
}
Best, Ellen