Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #44993
    BizQ
    Member

    @Sakin:If you go to http://www.bizq.co.za/business-startups/ you will notice there is a contact form when a submit button at the bottom of the page. How do I change the color of the submit button and it’s text ? Thanks

    #45024
    Sakin
    Keymaster

    @BizQ: You can change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    #content input[type="submit"] {
        background-color: #000;
        border-color: #333;
        color: #7c7c7c;
    }
    #45053
    BizQ
    Member

    @Sakin: Great, thanks it works.

    #45086
    BizQ
    Member

    @Sakin: The Custom CSS code works but not for the button on the newsletter widget in the footer area.

    If you look at the “Subscribe” button on the footer it is not the same color as the “Submit” button.

    Example: http://www.bizq.co.za/outsource-packages/business-startups/

    Please help. Thanks

    #45117
    Sakin
    Keymaster

    @BizQ: Then you can replace the previous css with the following one.

    #content input[type="submit"],
    #supplementary input[type="submit"] {
        background-color: #000;
        border-color: #333;
        color: #7c7c7c;
    }
    #45126
    BizQ
    Member

    Perfect, thanks.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change color of link’ is closed to new replies.