Custom CSS question?

schleprock

Power Member
Joined
Apr 10, 2014
Messages
745
Reaction score
69
I used this custom css command on my LP

body .row a {
font-size:50px !important;
}

THe problem is that it makes all the text on the page 50px, that aren't in Heading, Sub Heading areas. Those do what they are supposed to do

I have photo credits in the footer and they are 50px. Way too big.
Any ideas on how to force the accreditation to be smaller.
I have tried H5 tags, and font size tags, nothing works.

Here is the LP
http://ragingalcoholic.com/go/get-addiction-treatment-now/

No amount of Google querying seems to yield results.

The LP theme forum said to reduce the

font-size:50px !important; to 20px, but then I lose my big buttons with the phone number in them

it is a little off topic for BHW but I hope someone knows the answer. I'm not finding a solution through normal sources
 
Your selector sets font-size: 50px to all your links. If you want to set font-size just for buttons, you have to be more specific - try this:

.btn-lg { font-size: 50px !important }

and remove your old code.

EDIT: You have really many errors in your code, you should hire someone to do it for you
 
Last edited:
You are %#$* awesome. That fixed everything.

Thanks
 
Back
Top