Comments Rboullay started the conversationJuly 21, 2022 at 3:15pmHello,can you tell me how can i do in order to have same Penci underline (it is done with a specific span and gives a line not full width) in the titles of archive/categroy pages and in "similar articles" in bottom of single post pages? 3,003PenciDesign repliedJuly 21, 2022 at 8:39pmHi,Please go to Appearance → Customize → Custom CSS then add the following custom CSS code: .post-related .post-box-title::after { width: 100px; height: 10px; content: ''; background: #000; display: block; position: absolute; left: 10px; bottom: -8px; top: auto;}.post-related .post-box-title { margin-bottom: 30px;}Regards,PenciDesign. Sign in to reply ...
Hello,
can you tell me how can i do in order to have same Penci underline (it is done with a specific span and gives a line not full width) in the titles of archive/categroy pages and in "similar articles" in bottom of single post pages?
Hi,
Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:
.post-related .post-box-title::after {
width: 100px;
height: 10px;
content: '';
background: #000;
display: block;
position: absolute;
left: 10px;
bottom: -8px;
top: auto;
}
.post-related .post-box-title {
margin-bottom: 30px;
}
Regards,
PenciDesign.