[Resolved] Insert space between text and tags

Home Forums Support [Resolved] Insert space between text and tags

Home Forums Support Insert space between text and tags

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #2394501
    Roger

    Hi!

    – How to insert space between text and tags?
    – How to remove the tag icon?

    #2394908
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    
    .entry-meta .gp-icon.icon-tags {
        display: none;
    }
    .single footer.entry-meta {
        margin-top: 40px;
    }
    #2394958
    Roger

    Thanks, it worked!

    How to insert space below tag? I changed the code but did not insert space below the tag.

    .single footer.entry-meta {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #2395119
    David
    Staff
    Customer Support

    That should work, unless there is either a) other CSS overriding that, b) another element below it with greater top margin.

    Can i see the site with the issue ?

    #2395208
    Roger

    I’m using this code to customize the tags

    `.tags-links a {
    background-color: #ccc;
    color: #020202;
    padding: 5px
    }

    .tags-links a:hover {
    background-color: #24CC44;
    color: #020202;
    }

    #2395217
    David
    Staff
    Customer Support

    Ok so you also have this CSS:

    
    #nav-below {
            padding-top: 20px;
            border-top: solid 1px #999;
            border-bottom: solid 1px #999;
            margin-top: 20px;
            font-size: 20px;
            color: #24CC44
        }

    Edit that and increase the Margin top to make space between it and the Tags.

    #2395263
    Roger

    Yes, I’m using this code. But it did not work.

    #2395477
    David
    Staff
    Customer Support

    Replace this CSS:

    #nav-below {
        padding-top: 20px;
        border-top: solid 1px #999;
        border-bottom: solid 1px #999;
        margin-top: 20px;
        font-size: 20px;
        color: #24CC44;
    }

    With:

    #nav-below {
        padding-top: 20px;
        border-top: solid 1px #999;
        border-bottom: solid 1px #999;
        margin-top: 40px;
        font-size: 20px;
        color: #24CC44;
    }

    Note: The change is to the margin-top: 40px; property.

    #2395592
    Roger

    It worked! Thanks.

    #2395614
    David
    Staff
    Customer Support

    Glad to hear that!

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.