Archived topic
Insert space between text and tags
9 replies · Started by Roger on October 30, 2022
Hi!
- How to insert space between text and tags?
- How to remove the tag icon?
Hi there,
try this CSS:
.entry-meta .gp-icon.icon-tags {
display: none;
}
.single footer.entry-meta {
margin-top: 40px;
}
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;
}
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 ?
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;
}
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.
Yes, I'm using this code. But it did not work.
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.
It worked! Thanks.
Glad to hear that!