How to hide or change mobile header logo with Additional CSS or custom PHP
How to hide or change mobile header logo with Additional CSS or custom PHP
How to hide or change mobile header logo with Additional CSS or custom PHP
The logo is not appearing on my website header(Astra)
There could be many different causes for this issue. The easiest way to determine the cause is to inspect the logo element on the front end of your website. See how the HTML structure has been rendered, what might have gone wrong? Is the image source okay? Are there any CSS interferences? There are lots … Read more
I ended up using this in the “additional css” tab. .logo_new img { content:url(“wp-content/uploads/path/to/image/image.png”); height: 90px; width: 220px; }
Your Site Logo is surrounded by a class named “custom-logo-link”. So try to add .custom-logo-link { border:0; }
Thanks everyone for the help. I managed to overcome this problem as follows: Themes > Customize and then I looked up in the headers tab and I saw the header which is used for mobile view. I went to the headers and clicked “edit in Elementor” then I found the hambergur menu there with no … Read more
Alignment station can be moved or control using Station Control tab. Click the Alignment tab. Choose the Modify panel. Select the Alignment Properties drop-down. In the Alignment Properties, click Find. Note: The tab most recently opened in the Alignment Properties dialog box is displayed by default. In the Alignment Properties dialog box, click the Station … Read more
Have you tried looking in the Customiser? Located here Appearance > Customise > Logo > Select Image (Select your Companies Logo) Best of luck 🙂
You can surround your logo part with IF and check if current post is not that one that should not have the logo. It looks like you’re talking about a custom post type, so you should use is_single() conditional tag with the ID or SLUG of no-logo-post as a parameter. if ( ! is_single(513) ) … Read more
Adding a logo is not part of the functionality of the html5 blank template as far as I know. You will have to access your theme folder and change the path to your own logo. It comes with a logo.svg files, which is referenced in the header.php file. Look for the logo and substitute it … Read more