Month: May 2020

linx mint logo

How to change Linux Mint boot logo

…or any other Linux. For Mint, go to /usr/share/plymouth/themes/mint-logo and replace the image with your custom one After that run: sudo update-initramfs -u Reboot and enjoy!

Citeste tot / Read all How to change Linux Mint boot logo
wordpress

How to add custom font to WordPress

Upload via ftp the *.ttf font to a location on server, for example /var/www/website/wp-content/themes/fonts/ Once the file is uploaded add to the stylesheet (style.css) the following: @font-face { font-family: Custom Font; src: url(http://www.yourwebsite.com/wp-content/themes/fonts/custom-font.ttf); font-weight: normal/italic/bold; } Call it where needed: .h1 site-title { font-family: “Custom Font”, Arial; }

Citeste tot / Read all How to add custom font to WordPress