In this post, we will discuss that how can we remove bottom border (which is a dotted line) from post.
Step1:- Go to Layout - Edit HTML
Step2:- Find below mentioned code:-
.post {
margin:.5em 0 1.5em;
border-bottom:1px dotted $bordercolor;
padding-bottom:1.5em;
}
Step3:- modified this code as
.post {
margin:.5em 0 1.5em;
border-bottom:0px dotted $bordercolor;
padding-bottom:1.5em;
}
Its done and bottom dotted border has been removed from your post.
BlueOcean
For Further Reading,
0 comments:
Post a Comment