Sample Custom CSS for Jazzy Forms
-
I struggled for weeks to figure this stuff out, so I’m posting all my custom CSS in the hopes it might help somebody. You can copy and paste this stuff as you see fit, and you can change the values however you like. If this is all Greek to you, I suggest reading a couple CSS tutorials first so you know what’s going on.
One thing I want to explain first: Take a look at this:
#jzzf_2_element_3
The “2” there stands for Form 2, as in it’s the second form I’ve created, so you may have to change that number appropriately. Also, element_3 means it’s for the 3rd element I’ve added to the form, so that can be changed as needed.
That part gets a little confusing, but if you download Firebug for Mozilla Firefox, you can right-click on an element on your form (on your front page, as your viewers will see it) and select “Inspect with Firebug” and it will show you what the element is called. Just replace my element name with yours.The only one of these below that uses a custom class, is the .price. I just put “price” under “Appearances” within the element on the form builder.
.jzzf_form div, .jzzf_form p, .jzzf_form ul, .jzzf_form li, .jzzf_form span {
font-size: 13px;
}
#jzzf_2_element_3{
font-weight:500;
}
#jzzf_3_element_5{
font-weight:500;
}
.price #jzzf_3_sum {
font-size: 14px;
font-weight: 700;
color:green;
}
div.jzzf_full.text {
width: 500px;
}
div.jzzf_element label{
display:inline;
font-weight:700;
margin-bottom:0px
}
div.jzzf_element .jzzf_email_button{
clear:both;
background-image: linear-gradient(180deg,rgb(255,255,255),rgb(98,187,70));
text-align:center;
font-size:13px;
color:#262626;
font-weight:bold;
border-radius: 15px 0px 15px 15px;
}
div.jzzf_element #jzzf_3_reset{
background-image: linear-gradient(180deg,rgb(255,255,255),rgb(253,232,153));
text-align:center;
line-height:22px;
padding:8px;
color:#262626;
font-size:12px;
border-radius: 15px;
}
li.jzzf_row{width:600px;}
div.jzzf_half{width:225px;}Hope that helps. I had zero CSS experience before I started using this form, so this little tutorial is really meant for someone who was in the same boat as me.
- The topic ‘Sample Custom CSS for Jazzy Forms’ is closed to new replies.