Reply To: CSS Class?

#15003
Ernest Marcinko
Ernest Marcinko
Keymaster

Hi Earl,

It’s because the ‘font’ rule actually overrides both the font-family and the font-size, so they have to be separated. This is what seems to be working for me the best:

div.asp_text_button {
    font-family: magallanes-regular !important;
    color: #ffffff !important;
    vertical-align: middle;
    line-height: 30px !important;
    font-size: 20px !important;
}

..also, the input and the autocomplete font-size fix:

input.orig, input.autocomplete {
    font-size: 12px !important;
}

I noticed that as the page size decreases the slider decreases the font-size of each containing element, I guess that is some sort of zoom effect. However these rules should prevent that.

Best,
Ernest Marcinko

If you like my products, don't forget to rate them on codecanyon :)