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
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
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
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
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
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.