• Resolved cruisnews

    (@cruisnews)


    Greetings! I would like to add a color background and a darker border around the form fields for users submitting their own ads. What CSS parameters should I be looking for/using to achieve this?

    Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi, you will need to go to wp-admin / Appearance / Customize / Additional CSS panel and add there the code below

    
    .adverts-form input[type=text], .adverts-form textarea, .adverts-form select {
        border: 1px solid black;
        background-color: gray;
    }
    

    Of course adjust the black and gray colors to suite your needs.

    Thread Starter cruisnews

    (@cruisnews)

    Perfect! Thanks, so much, for the solution. Much appreciated!

    Thanks a lot!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Form field and background CSS’ is closed to new replies.