Remove double lines

Discussion in 'GoldenEagle WordPress Theme' started by amaconline, Sep 21, 2013.

  1. amaconline

    amaconline Member

    Joined:
    Feb 17, 2013
    Messages:
    217
    Likes Received:
    6
    Hi, I hope you can help. I would like to remove/fix the double lines. Please assist me with the CSS code.
    Check attachment.

    Thank you.
     

    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:
    .page-content .content-bar h1.page-title{
    background:none;
    }
    .page-content h1.page-title{
    background:none;
    }
     
  3. amaconline

    amaconline Member

    Joined:
    Feb 17, 2013
    Messages:
    217
    Likes Received:
    6
    Hi Gourav, unfortunately that did not solve the problem. It only appears on mobile phone so I believe if we could change the media display in responsive way then that might solve the problem. Hope you can help.

    Thank you.
     
  4. Gourav

    Gourav Support Staff

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

    Do let us know your website link.
     
    amaconline likes this.
  5. amaconline

    amaconline Member

    Joined:
    Feb 17, 2013
    Messages:
    217
    Likes Received:
    6
    Hi Gourav,

    Here it is: http://www.noabuse.co.uk. If you view it on a smartphone or even shrink the page then you will notice double-lines appear on the main slide.

    Also can we remove the "Shadow" effect around the main page.

    Thank you for all your hard work.

    AMAC
     
  6. 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:
    @media only screen and (max-width: 767px) and (min-width: 480px){
    #menu {
    border-top: none;
    border-bottom: none;
    }
    }
     
    @media only screen and (max-width: 480px){
    #menu {
    border-top: none;
    border-bottom: none;
    }
    }
    .main_container {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    }
    .feature-content {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    }
    .footer{
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    }
    
     
    amaconline likes this.
  7. amaconline

    amaconline Member

    Joined:
    Feb 17, 2013
    Messages:
    217
    Likes Received:
    6
    This is absolutely wonderful Gourav. Thanks a million!
     

Share This Page