Hi..First off it’s best to start a support thread for each need, so to speak..
Always check the snippets area also of Customizr.. quite good I should say! It’s here if you’re interested. The following bits come from there:
(They require a little code..)
Try this link for the slider work.
And this for changing some of the footer work.
Cheers,
Michael
Here’s some code to change the button color.. some of the other code could be over kill but I put it in anyway..
It makes the top have a border-radius a color like periwinkle and an off-white text color as well as takes away the ugly default hairline border around a basic button.. I was using the ‘OpenSans’ font at the time so I put in font-family: inherit;
Add it to the custom css box in Customizr or to your style.css stylesheet.
You can always customize it, of course 🙂
button {
color: #fafafa;
background-color: #8296AD;
border-top-left-radius: 14px;
border-top-right-radius: 14px;
border: medium none;
margin: 35px 0 0 35px;
padding: 10px 35px;
cursor: pointer;
font-family: inherit;
font-size: 1em;
line-height: 1;
position: relative;
text-align: center;
text-decoration: none;
}