CSS custom code to remove and adjust gaps

Discussion in 'GoldenEagle WordPress Theme' started by gavinbrooks, Mar 20, 2014.

  1. gavinbrooks

    gavinbrooks New Member

    Joined:
    May 23, 2013
    Messages:
    13
    Likes Received:
    0
    Location:
    Loudwater, High Water, United Kingdom
    Can I have help please with custom CSS codes to the following as shown in two pictures please:
    Many thanks.
    Gavin
     

    Attached Files:

  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:
    .main_container {
    margin-top: 0px;
    }
    #slides .prev {
    display: none;
    }
    #slides .next {
    display: none;
    }
    .pagination {
    display: none;
    }
    .feature-content {
    padding: 5px 0;
    }
    .feature-strip {
    padding: 12px 0 9px 0;
    margin-top: 5px;
    margin-bottom: 5px;
    }
    .footer {
    display: none;
    } 
    You can adjust the "margin" and "padding" as per your requirement.
    This will solve your issue.
     
  3. gavinbrooks

    gavinbrooks New Member

    Joined:
    May 23, 2013
    Messages:
    13
    Likes Received:
    0
    Location:
    Loudwater, High Water, United Kingdom
    Thank you very much it works :)

    Just one little question, when I remove the long bar and dots using this:

    .pagination {
    display: none;
    }

    Whats the CSS code to remove the empty container or space it was sitting in please?
     
  4. gavinbrooks

    gavinbrooks New Member

    Joined:
    May 23, 2013
    Messages:
    13
    Likes Received:
    0
    Location:
    Loudwater, High Water, United Kingdom
    And can I use custom CSS to add a red border around the edges of the main content boxes and the boxes below it?
     

    Attached Files:

  5. 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 {
    margin-top: 20px;
    }
    .main_container {
    padding: 5px 0;
    } 
    You can adjust the "margin" and "padding" as per your requirement.
    This will solve your issue.
     
  6. Piyush

    Piyush Support Staff

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


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

    Code:
    .main_container {
    border: 2px solid red;
    }
    .feature-content {
    border: 2px solid red;
    } 
    In place of "red" you can put your color or color code.
    This will solve your issue.
     

Share This Page