You are viewing limited content. For full access, please sign in.

Question

Question

CSS coding for Section Field

asked on December 26, 2019

How do i use CSS to have a Section Field to center, bold and underline the page? I got the code for the Centering as follows"

#q51 {font-weight:bold; text-align:center;}

but the the title will not bold.

Need help please

format field.jpg
0 0

Replies

replied on December 27, 2019

Your selector isn't specific enough and is getting overwritten by default CSS. Try this:

#q51 .cf-section-header h2 {
  font-weight:bold
}

Here's an article on selector specificity, if you're interested: https://dev.to/emmawedekind/css-specificity-1kca

0 0
replied on December 27, 2019

Thanks, i think i have alot to learn in CSS

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.