Help Center

Powered by Minitek FAQ Book
Loading...

Title font-size is not changing if I change h3 to h5

MF
Max FolmerPosted 8 months ago

Hi,

The Title font-size is not changing if I change h3 to h6 etc.
Probably I have to change this elswhere.

See the attachment.
Do you have an inputfield or a css:  like:

.xxxx{font-size: 12 px!important;)

 

Loading...
0
#4223

4 answers

MF
Max FolmerPosted 8 months ago

In the mean time I placed this css code in style.css in the module itself.


h3, .h3 {
  font-size: 14px!important;
  color: #1371B1!important;
}

 

It works but is probably not the right solution.

It had to work in the Admin Parameters.

Hope minitec answer me.

Regards, Milian

M
MinitekPosted 8 months agoModerator

Hi Milian,

You can do the following:

1. Open the module in the back-end and enter a custom class name in the field Advanced > Module class. For example: myClass

2. Use this class in your css file to target the h3 headings in the module:

.myClass .rga .inner-mix h3 {
  font-size: 14px!important;
  color: #1371B1!important;
}
MF
Max FolmerPosted 8 months ago

Thanks a lot!

Regards,

Milian

M
MinitekPosted 8 months agoModerator

You're welcome!