Removing the Lines that create a box around pages

Discussion in 'Themia WordPress Theme' started by orthorecruiter, Jan 2, 2014.

  1. orthorecruiter

    orthorecruiter New Member

    Joined:
    Jan 1, 2014
    Messages:
    5
    Likes Received:
    0
    Can you please explain how I can remove all of the lines that outline pages and sub-menu titles?

    Thanks!
     
  2. 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:
    .content_wrapper .side_content .post {
    border: none;
    }
    .fullwidth {
    border: none;
    } 
    This will solve your issue.
     
  3. orthorecruiter

    orthorecruiter New Member

    Joined:
    Jan 1, 2014
    Messages:
    5
    Likes Received:
    0
    Any chance we can remove the border around the slider pic?
     
  4. 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:
    #main{
    border:none;
    }
    This will solve your issue.

    Thanks & Regards
    Gourav Shrivastava
     
  5. orthorecruiter

    orthorecruiter New Member

    Joined:
    Jan 1, 2014
    Messages:
    5
    Likes Received:
    0
    Last question...
    Can we remove the posted date, category and author on the blog posts?

    Thanks!
     
  6. 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:
    .content_wrapper .side_content .post .post_info {
    display: none;
    } 
    This will solve your issue.
     
  7. orthorecruiter

    orthorecruiter New Member

    Joined:
    Jan 1, 2014
    Messages:
    5
    Likes Received:
    0
    Thank you!
     
  8. orthorecruiter

    orthorecruiter New Member

    Joined:
    Jan 1, 2014
    Messages:
    5
    Likes Received:
    0
    Ran into an issue today when trying to create a newsletter sign-up contact form in the secondary widget area. It will only display on the contact page (which is a default page). Any ideas?
     
  9. Piyush

    Piyush Support Staff

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

    You can try Dynamic Widgets plugin for this issue.
    Download it from the link given below and install it from the Plugins panel (Plugins ->Add New ->Upload) in your Dashboard.
    http://wordpress.org/plugins/dynamic-widgets/

    This will fulfill your requirement.
     

Share This Page