Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1417302

    Droogers
    Participant

    Sublime!

    Thanks again.

    Tjeerd

    #1417375

    Rue Nel
    Moderator

    You’re welcome!
    Thanks for letting us know that it has worked for you.

    #1425170

    Droogers
    Participant

    Hi

    Try to adjust the width/margin of the three columns in the block grid. Left and right for example each column 5 px margin and aligned left.
    Made a class p-design and in the customer I added the following code:

    .p-design {
    font-size: 6px;
    text-align: left;
    line-height: 30px;
    font-family: ‘montserrat’;
    margin-left: 30px;
    margin-right: 30px;
    color: white;

    Some work (font) and others dont (margin).
    What am I doing wrong?

    Also added a simular code for p
    .p {
    margin-left: 30px;
    margin-right: 30px;

    No result.

    Thanks in advance.
    Tjeerd

    #1425249

    Paul R
    Moderator

    Hi,

    Please use padding instead.

    eg.

    
    .x-block-grid .p-design {
        padding: 0 20px 20px;
        font-size: 6px;
        text-align: left;
        line-height: 30px;
        font-family: 'montserrat';
        color: white;
    }
    

    Hope that helps.

    #1425261

    Droogers
    Participant

    Thanks a lot!
    It works nicely.

    Tjeerd

    #1425316

    Paul R
    Moderator

    You’re welcome! 🙂