Need CSS for heading font size

Is there a CSS code for heading font size with theme bootslim?

thx

That theme looks very basic to me.

have you tried simple CSS like:

h1 {
    font-size: 72px !important;
}

h2 {
    font-size: 38px !important;
}

And so on for the heading that you want to change ( you did not say which heading level you wanted to change OR supply a URL for us to look at to advise).

Hi kryten
works perfect! thank you very much:-)

Just another question to Bootslim:

If I use Title and Slogan, there’s a line between them. If I don’t use any text in Title and Slogan, unfortunately this line is still there. Do you have any idea how I can delete this line?

Thanks

Again, without a link to allow me to actually see the line you are talking about I’m flying blind.

But try this CSS:

.header-white .blog-description:after {
    visibility: hidden !important;
}

WOW, and that with flying blind! Don’t want to see you flying with open eyes:-)

Works perfect! Thank you

You are very welcome.