Hello! I have two questions in regards to the spotlight template, the first one being about the social media icons. I have been trying to link my instagram, Tiktok and Pintrest and ig was the only one that took. I did go into the code and see that it's only sat up for ig, twitter and facebook. I'm not really sure if theres a solution or even how to proceed due to how the code is sat up. The second is if theres a possibility to add a photograph as the background to the sidebar/post background.
Hi! The icons used in the theme are Feather Icons. There's currently no Tiktok or Pinterest icons available but you may use other icons to represent them by entering the name of the icon into the icon field.
If you really wanted those icons you could use manually add FontAwesome to the them. Here's their getting started guide. You'll need a kit that will go within the <head></head> tag and then you'll have to replace the Feather Icons. Exchange:
<i data-feather="{text:social one icon}"></i>
With (using the pinterest icon as an example):
<i class="fa-brands fa-pinterest"></i>
I'm not sure where exactly you want to add the background, if you're looking to add the same image as a whole background but the principle is the same for all. Add the following to your Custom CSS.
You can find āCustom CSSā in the Customizer under āAdvanced optionsā (at the very bottom).
#container {
background-image: url(āhttps://64.media.tumblr.com/aec3ac37addf5ed8968a495269bac308/bfeb7d27dfef6f75-90/s1280x1920/ba4f9969373604e8f403bacc8aade5c218a917f7.jpgā);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
aside, #content_wrapper {
background: transparent;
}
If you want separate images, replace the selector (#container) with aside for the sidebar and #content_wrapper for the post container background.
Replace the image URL (under ābackground-imageā) with your imageās URL. If you want it to repeat, remove ābackground-repeatā.
If you want to learn more about background images read on here.