Home » Random Stuff »
This post may contains affiliate links. As an amazon associate I earn from qualifying purchases.
How To Remove Clock Icon From WordPress Site
Few tips to customize your website.
Got to Appearance section and then Customize. Under CSS add these snippet of code.
.icon-clock{ display:none !important;}
How To Remove Authors name From WordPress Site
ul li.meta-author {
display: none;
}
How To Change the font size of the full website of a WordPress Site
Change the font size of your like.
p {
font-size:16px;
}
Remember to click published.
This post may contains affiliate links. As an amazon associate I earn from qualifying purchases.