Logo location and images on testimonials
-
Hi, I am using the theme here: https://first4rooms.com/ but have come across 2 issues.
Logo in top left
I want to add the logo to the top left rather than in the middle of the main banner – is this possible with the CSS to amend?Adding an image to a testimonial
I can’t see how to add an image of the person who has written a testimonial. I can’t see it in the left hand side settings bar. Can you help to explain?Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there!
I want to add the logo to the top left rather than in the middle of the main banner
This is not an easy fix, although you may be able to add the logo to the header with the CSS code above, however, it will require some finessing. First of all, you’ll want to add the URL to your own logo where necessary. You’ll get the URL of the logo after you’ve uploaded it to your media library by clicking on “Edit image”. The logo will also need to be quite small. You can give it a try:
/* Add Logo to Lodestar theme Top Bar */ @media only screen and (min-width: 960px) { #site-navigation:before { content: ""; background: url(ADD HERE THE URL OF YOUR LOGO); background-repeat: no-repeat; background-size: 100px 52px; width: 100px; height: 52px; float: left; margin-right: 30px; } } @media only screen and (max-width: 959px) { #site-navigation:before { content: ""; background: url(ADD HERE THE URL OF YOUR LOGO); background-repeat: no-repeat; background-size: 100px 52px; width: 100px; height: 52px; float: initial; display: block; margin: 20px auto; } }I can’t see how to add an image of the person who has written a testimonial.
You’ll want to add the image as Featured Image. This setting can be found on the right-hand sidebar :)
If you need more help, remember that you can access live chat directly from https://wordpress.com/help/contact – it’s a faster way of getting support.
- The topic ‘Logo location and images on testimonials’ is closed to new replies.