Topic Resolution: Resolved
  • Closed
  • Mike Barkas
    Spectator
    May 7, 2016 at 6:27 am #27377

    Can you please tell me where i can further customize the content boxes, For example. Text Size, Color, Padding, Size of Content boxes. I find they are quit Large on my size and would like to trim them down.

    Denzel Chia
    Moderator
    Posts: 2656
    May 8, 2016 at 8:11 am #27401

    Hi,

    You can use the following in your Theme Options -> Custom CSS

    This is for title size

    .content-box h2 {
    font-size: 20px !important;
    }

    This is for paragraph

    .content-box p {
    font-size: 10px !important;
    }

    As for the others, Please post me your website URL after you applied the above mentioned.

    Thank you.

    Mike Barkas
    Spectator
    Posts: 15
    May 8, 2016 at 7:37 pm #27419
    This reply has been marked as private.
    Denzel Chia
    Moderator
    Posts: 2656
    May 9, 2016 at 1:50 am #27437

    Hi,

    its alot of blue space,

    I can only see white space. Please provide screenshot with annotation to the spacing that you want to reduce.

    I am color blind.

    Thank you.

    Mike Barkas
    Spectator
    Posts: 15
    May 9, 2016 at 4:09 am #27443

    Tighten Up the space a bit

    The red Lines, If i could just “tighten up” the content boxes and be able to play with the length and spacing would be great.

    Denzel Chia
    Moderator
    Posts: 2656
    May 9, 2016 at 9:41 am #27458

    Hi,

    This is a working example.

    .content-box p {
    margin: 5px 0 !important;
    }
    .content-box h2 {
    margin: 5px 0 !important;
    }
    .content-box a {
    margin: 5px 0 !important;
    position: relative;
    top: 20px ;
    }
    .content-box {
    padding: 10px 20px 60px 20px !important;
    }

    You need to adjust the padding and margin of all the elements within the content box.

    Mike Barkas
    Spectator
    Posts: 15
    May 10, 2016 at 12:14 am #27510

    Thanks for your help, Works perfect

    Denzel Chia
    Moderator
    Posts: 2656
    May 10, 2016 at 2:16 am #27518

    You are welcome.