Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #94721
    Aleksi
    Participant

    Hi!

    I don’t know much about css, so I thought I’d ask this here instead of losing my mind trying to figure it out.

    Is there any way to change to color of the “submit” button in a form (example http://paniikki.net/paniikki/palaute/)? Should I just choose a different color scheme?

    And another thing: how can I add some padding to the side bar? Now it has to be the same color as the background, otherwise it looks really stupid when all the text is too close to the edge.

    I’d really appreciate any advice 🙂

    #94769
    Mahesh
    Participant

    @naksnaks: Thank you for using Chicago Pro theme. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
    * Change to color of the “submit” button in a form

    input.wpcf7-submit[type="submit"] {
        background-color: #1e73be;
    }

    Note: Replace the hex in the above code to your desired color.

    * Add some padding to the side bar

    .sidebar-primary {
        padding: 0 10px;
    }

    Regards,
    Mahesh

    #94822
    Aleksi
    Participant

    Thank you Mahesh 🙂

    It would have taken me ages to figue those out…

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Button color and sidebar’ is closed to new replies.