Adding company logo to the widget

I would like help knowing how to add our company logo to the widget we created. Is this feature only available under the paid accounts? I would love our company logo to show up somewhere on the widget. Preferrably bottom of the widget centered. Thank you!

(https://e73026f003484e44bde10a24af343752.elf.site)

2 Likes

Hey there and welcome aboard, @Siam_Corbisiero :wave:

Yep, it’s possible! You should use this code in the Custom CSS field on the Settings tab of your widget’s settings:

[class*='widget__Container-sc']::before {
	content: '';
	background: url(https://elfsight.com/wp-content/themes/elfsight/frontend/assets/img/logo.svg)
		center / cover no-repeat;
	position: absolute;
	bottom: -40px;
	left: 50%;
	width: 156px;
	height: 36px;
	transform: translateX(-50%);
}

Note: Do not forget to replace the image url with url of your image (it should be hosted somewhere and be public available) :slightly_smiling_face:


Give a try and let me know if it worked!

1 Like