dsb0328
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] Background ImagesSorry for the confusion, but do you mean post in the WordPress forums under a new topic called GP Premium, or go to the GeneratePress site and post in the Add-Ons forum?
Forum: Themes and Templates
In reply to: [GeneratePress] Background ImagesThat might be it. How do I get the update? I assume from what I see on the website, upgrades are free? I am also using the GP Simple PHP. Does that need to be updated as well?
Forum: Themes and Templates
In reply to: [GeneratePress] Background ImagesP.S. Tried the deactivating the plugins and that didn’t do anything. And the only plugins I have activated are BlackStudio TinyMCE, TinyMCE Advanced and Ultimate Social Media PLUS.
Forum: Fixing WordPress
In reply to: Adding More Spaces in Menu Items?Guess that means nobody knows about this.
Forum: Fixing WordPress
In reply to: Adding More Spaces in Menu Items?Weird, after I posted this, it doesn’t add the extra spaces on here either when I show how I wanted it.
Forum: Themes and Templates
In reply to: [GeneratePress] Blurry Site Logo on Mobile Devices?Glad you agree. And hope it can help someone else out as well if needed.
Forum: Themes and Templates
In reply to: [GeneratePress] Blurry Site Logo on Mobile Devices?Sounds good! And by “interesting technique” you must mean “interesting hack” because I just started messing around with different options in css and fell upon this one that just happened to work. Hopefully it’s a good solution, and not one that will come back to bite me later. If anyone thinks it will, please don’t hesitate to chime in.
Forum: Themes and Templates
In reply to: [GeneratePress] Blurry Site Logo on Mobile Devices?Okay, I think I figured it out. I removed the Hooks, added the site logo back into the Site Identity area, and then entered the following css:
.site-logo { max-width: 275px; } @media only screen and (max-width : 768px) { .site-logo img { content: url('http://www.sitename.com/wpcontent/uploads/YOURMOBILEIMAGEHERE'); } }The main site logo is only 204 px wide and the mobile version image is 500px wide. So, with the max-width set at 275px, the main logo comes in at full size and the mobile logo comes in at half size. So far so good on all devices.
Forum: Themes and Templates
In reply to: [GeneratePress] Blurry Site Logo on Mobile Devices?1. I had already tried the pixel values and they didn’t make a difference.
2. It’s not just the font, it’s also the graphic font within the logo that is larger. And unfortunately I can’t change my client’s logo.
3. I followed your GP Hooks instructions and code and it gave me 2 logos in the header. So, I removed the Site Identity logo and it worked. However, the logo didn’t link to the home page and I am unable to center it like I had it in mobile mode. I was able to make it reduce to 75% on the mobile version, but for some reason the coder for align-text did not work. Here’s the code I used:
‘.hide-on-desktop {
max-width: 75%;
text-align: center;
}’Any other ideas? Kinda crazy how difficult such a small thing is becoming, so the simpler the solution, the better for future purposes imo. However, I understand that you have to comply with every guideline update that WordPress puts out there, and that’s gotta be hard. So any and all help is greatly appreciated.
Forum: Themes and Templates
In reply to: [GeneratePress] Blurry Site Logo on Mobile Devices?Okay, funny thing happened. I placed the larger image, told it to be 50% (and actually 75% at 768px screen size media query, which didn’t make a difference in what’s to follow) and the site logo looks great on the mobile/responsive version. That’s not the funny part. It looks terrible on the desktop version. Now how does that happen? Oh, and I have been trying it with another logo, and the same thing has happened to both. You can see both logos on this page. The other logo is the Powered By logo just under the iPad image.
Here’s the CSS i put in:
‘.site-logo img {
max-width: 50%;
}@media only screen and (max-width : 768px) {
.site-logo img {
max-width: 75%;
}
}’Forum: Themes and Templates
In reply to: [GeneratePress] Blurry Site Logo on Mobile Devices?Sure thing. It’s still under development, but here’s the link.
I am viewing it on a Galaxy S3 with Chrome and the stock browser and a newer iPhone.
Forum: Themes and Templates
In reply to: [GeneratePress] Blurry Site Logo on Mobile Devices?I just noticed another image looks blurry in a different area. It’s another small logo and I’m starting to wonder if it has something to do with images that are small in size. The site logo is 204px x 50px and this other logo is 158px x 40px. Ring any bells?
Forum: Plugins
In reply to: [Contact Form 7] Form Not Working…Figured it out. I don’t know why this doesn’t work, but I had [first name] and [last name] in there for 2 different fields to fill out. When I changed it to [your name] for just 1 field to fill out, it worked fine. Guess you can’t separate first and last names in this plugin. Or did I label them wrong?
Forum: Plugins
In reply to: [Contact Form 7] Form Not Working…Okay, so I just tried a different form with the built in Contact Form from the SiteOrigin Widgets Bundle and that one worked. I also turned off every plugin and it made no difference in sending the CF7 form. Do the contact forms go through some sort of server first with CF7? If so, it would be strange that this one is not working, but is on 3 other websites that I am using it in. Anyone out there know anything about this? Should I just drop CF7 all together?
Nevermind. I figured it out with some css. Have to change the width to 100% and the position to relative. Not Page Builders fault. Should be this way in the code for Ultimate Social Media Icons Plus.