Contact us page mod

Discussion in 'BlackBird WordPress Theme' started by ekim2wheels, Apr 1, 2014.

  1. ekim2wheels

    ekim2wheels New Member

    Joined:
    Mar 14, 2014
    Messages:
    18
    Likes Received:
    0
    Hello,

    How can I modify the Contact Us page as indicated in the attached JPG file?

    Also, how can I change the color of the "Submit" button to dark grey?

    Thanks for your help.
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1. For removing sidebar

    go to template-contact.php present in your theme directory and remove the code given below

    Code:
       <?php get_sidebar(); ?> 

    2.

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
     #contactForm input[type="text"]{
    border:1px solid black;
    }
    #contactForm textarea{
    border:1px solid black;
    }
    #contactForm input[type="text"], #contactForm textarea {
    background-color: lightgrey;
    }
     
    #contactForm input[type="submit"] {
    background: darkgrey;
    }

    Thanks & Regards
    Gourav Shrivastava
     
  3. ekim2wheels

    ekim2wheels New Member

    Joined:
    Mar 14, 2014
    Messages:
    18
    Likes Received:
    0
    Thanks Gourav. That worked well, but I would also like to change the size of the boxes and the color of the text that shows up inside the boxes.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.
    Please download "template-contact.php" file attached and replace it with your current "template-contact.php" file.

    2.

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     #contactForm input[type="text"], #contactForm textarea {
    color: blue;
    }
    Thanks & Regards
    Gourav Shrivastava
     

    Attached Files:

Share This Page