Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Any idea how to give a bigger size to that “Welcome clarity” please?
.flex-caption h2 p {
font-size: 100px;
}
Then, in the pages of the website
Please link.
Thanks Andrew, although 100px was a bit too much 😀 I guess it was meant to be a percentage value, in any case I did 18px (because I didn’t manage to give the appropriate size using the tag <h4> and 100% on the CSS), now it’s perfectly fine all across the website. But I understand that what I did can create potential future problems, right?
Pages: all the other pages accessible from the menu, About, Fees, Contact
here’s the Fees’ link for example:
http://pedrazzi.eu/wp/fees/
Thanks!
Luca
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
But I understand that what I did can create potential future problems
Not sure which problems you’re referring to.
For the paragraphs, try adding this general style;
p {
margin: 10px 0;
}
Not sure which problems you’re referring to.
Well, because if I have other h2 fonts in the website they would change the size to 18px as well, instead of the 24px specified in the style.css file, or not?
For the paragraphs, try adding this general style;
p {
margin: 10px 0;
}
This worked a treat, thanks! Marked as solved already!
One thing, Andrew: I then discovered how to remove the hyperlink behaviour on the three features at the bottom, but as it was an additional question in the thread I opened (me stoopid), I now don’t know where to write about it.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Well, because if I have other h2 fonts in the website they would change the size to 18px as well, instead of the 24px specified in the style.css file, or not?
Only other <h2> tags that are inside an element with the class ‘flex-caption’ and that have a paragraph child element will be affected.
The style .flex-caption h2 p is actually applying to a paragraph.
I now don’t know where to write about it.
If it’s another thread, write your solution there. If it’s within this thread, write your solution here.
Thanks, that explains it well.
If it’s another thread, write your solution there. If it’s within this thread, write your solution here.
Thanks, I will write about it later in the other thread, then.
But it won’t appear in searches, will it?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
But it won’t appear in searches, will it?
All threads on WordPress.org are crawled by search engines. I’m not sure what you’re asking.
Sure they are, but we are also inserting tags. I guess I should add new ones, then, correct?
Thanks