Remove Main Feature Heading and slider pagination

Discussion in 'GoldenEagle WordPress Theme' started by karatesamband, Feb 20, 2013.

  1. karatesamband

    karatesamband New Member

    Joined:
    Jan 17, 2013
    Messages:
    11
    Likes Received:
    0
    How do I remove Main Feature Heading section and slider pagination section, not only the buttons/images, I already removed them with the following css.

    Code:
    .pagination {
    display: none;
    }
    My page is www.kai.is
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    ul.pagination {
    display: none;
    }
    .main_container .content h1 {
    display: none;
    }
    .main_container .content {
    margin-top: 15px;
    }
    This will solve your issue.
     
  3. karatesamband

    karatesamband New Member

    Joined:
    Jan 17, 2013
    Messages:
    11
    Likes Received:
    0
    Thank you.
    This solved it.
     

Share This Page