CSS styling of CF Border

markhayes 06 Jul, 2012
Hi,

I am trying to style my CF. All working except the padding. I am using the following

form#chronoform_Retailer_SignUp_Quick {
background-color: white;
padding : 5px;
border-style:solid;
border-color:#778935;
}

But the padding has no effect. Any suggestions?

Thanks in advance
GreyHead 06 Jul, 2012
Hi Mark,

Only that you use the web developer tools in your browser to see what is happening. The CSS looks fine on it's own but that doesn't tell you how it will behave on the page.

Bob
markhayes 06 Jul, 2012
I did that and found the issue. My padding was been affect by padding on the main CSS with the !important indicator. I changed my CSS to read

form#chronoform_Retailer_SignUp_Quick {
background-color: white;
padding : 5px !important;
border-style:solid;
border-color:#778935;
border-radius: 5px;
}

All works fine now. Thanks
This topic is locked and no more replies can be posted.