• Hi there,
    Can anybody advise me upon how to change the colour of the “launch” buttons and also make it say the different buttons say different things?
    Id also like to change the colour of the buttons on the slider.

    Also how do I remove the “designed by” text at the footer of the page.

    Here is a link to the site

    Thanks in advance for any help

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing button text and colour?’ is closed to new replies.