- This topic has 3 replies, 2 voices, and was last updated 6 years, 8 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The topic ‘Change Logo at Top-Logo Extra-Tel’ is closed to new replies.
Home › Forums › Trusted Pro › Change Logo at Top-Logo Extra-Tel
Is there way to put a custom logo/image here and replace the FA icon?
I think this should do it:
.extra-tel .fa:before {
background-image: url('full-path-to-image');
background-position: center;
background-size: 24px;
color: transparent;
}
where full-path-to-image is the URL of an image in your media library.
This works but since it is set to background it does weird things on resize (tiled etc). Plus since I am a CSS novice I don’t feel like doing media calls for the image.
Add this line to stop the image repeating
background-repeat: no-repeat;