Gray bar at top of pages - Remove

Discussion in 'Traffica WordPress Theme' started by kellydinardo, May 16, 2014.

  1. kellydinardo

    kellydinardo Guest

    Joined:
    May 14, 2014
    Messages:
    3
    Likes Received:
    0
    How do I remove the gray bar at the top of the pages. It's got the red arrow pointing to it in the attached screen grab?

    Thanks!
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

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

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

    Code:
    div.page_heading_container {
    visibility: hidden;
    } 
    Thanks & Regards
    Gourav Shrivastava
     
  3. kellydinardo

    kellydinardo Guest

    Joined:
    May 14, 2014
    Messages:
    3
    Likes Received:
    0
    Thank you! That worked.

    Is there a way to minimize the space that hiding the gray bar created. I'd like to move the text up a bit.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

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

    Code:
    div.page_heading_container {
    margin-bottom: 0px;
    padding: 0px 0 0px 0;
    }
    
    You can adjust the value of "margin" and "padding" as per your requirement.
    This will solve your issue.
     

Share This Page