Penderworth
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Merlin] How to Fix Blurred Images in Woocommerce Product PageYou could probably do this with CSS, Neha. Do you have a specific page you can share? I looked at the Merlin theme and it’s a magazine one, so WooCommerce is probably not something people use with it often.
Forum: Fixing WordPress
In reply to: How do I make my logo and menu bigger in the Quest themeYou can do this through custom CSS. Here’s what I would recommend adding to your theme’s:
.logo { height: 108px; }Feel free to change the height to whatever works best for you. I think 108px is a nice number. 🙂 If you want it to be larger than that on mobile, just add a media query that will override the one your stylesheet has now:
@media only screen and (max-width: 767px) { .logo { height: 118px; } }That will push the nav down a bit, though, so feel free to mess with it as well.
Hope that helps!
Forum: Fixing WordPress
In reply to: Warning: strpos(): Empty needle above imagesHi again folks. I just wanted to update you on what’s going on. I use MediaTemple for hosting, and they don’t allow me to modify the
wp-includesdirectory so I’ve contacted them about the issue to see if there’s anything they can do to help out. In the meantime, I can’t replace the media.php file or fix any of the code in it because I can’t modify it. I tried a different theme to no avail.If you have any other ideas they are much appreciated.
Forum: Fixing WordPress
In reply to: PHP errors related to wp-db and load.phpThanks Tara! I’ll give this a try as soon as possible. Those suggestions are very similar to what I suspected — I’ve had errors like this on other sites before and they’re sometimes syntax but that’s unusual. I appreciate the help.
Forum: Fixing WordPress
In reply to: Can't log in, strange popup promptWhat would the username and password even be though?
Forum: Fixing WordPress
In reply to: Posts out of order, maybe ?offset= value?Looks like we had a category sorting plugin enabled and it was reordering things. All is well now, thanks so much Justin!