How to hide the sidebar and make contact page full width?

Discussion in 'RoadFighter WordPress Theme' started by deveshd, Dec 5, 2014.

  1. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    You have to edit template-contact.php file as shown below in screenshot.

    5dec1.png

    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Thanks perfect. Now, how di I make the message box wider to cover the area?
    Screenshot 2014-12-10 04.28.38.png
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .page-content .content-bar .contactform textarea
    {
    width:60%;
    }
    @media only screen and (max-width: 1140px) and (min-width: 960px)
    {
    .page-content .content-bar .contactform textarea {
    width: 60%;
    }
    }
    Thanks & Regards
    Pramod
     

Share This Page