your theeme215 is there a way to put pinned post on the pinned post? I keep forgetting tis a pinned post I have on the top and panicking that it doesn't go anywhere..LOL
hi there! yes, there is.
ps: replace the quotation marks when you copy from here
css part
search for .posts { and paste this code before:
.pinned-post span { color: var(--bodyLinkColor); font-size: 13px; display:block; margin:10px 15px; cursor: pointer; }
.pinned-post span:hover { color: var(--bodyLinkHoverColor); -webkit-transition: var(--transitions); -o-transition: var(--transitions); transition: var(--transitions); }
if you want as a text, add this two after cursor: pointer; in .pinned-post span {
font-weight:bold; outline:var(--bordersSize) var(--bordersStyle) var(--bordersColor);
html part
search for <article class="posts" id="{PostID}"> and paste this code after:
{block:PinnedPostLabel} <div class="pinned-post"> <span href="{Permalink}" title="{PinnedPostLabel}" class="sf sf-push-pin-o"></span> </div> {/block:PinnedPostLabel}
if you want as a text, add this span instead the one on <div class=“pinned-post”>
<span href="{Permalink}">{PinnedPostLabel}</span>
to change the size of the icon or the text, it’s in .pinned-post span { font-size: 13px;











