Will Schmierer
Forum Replies Created
-
Do you have a link to your site where this is happening?
Forum: Fixing WordPress
In reply to: Admin access password problemI would recommend contacting your host to see if they can help resolve the issue, might just be a hiccup with the installation they provided or something your particular host might have in place that might be causing an issue.
Forum: Fixing WordPress
In reply to: All my testimonials in the testimonial slider are displayed first.Do you have a link to the site where this is happening?
Forum: Fixing WordPress
In reply to: Featured Image Not Displaying ProperlyIf you look at your css file, they’re slightly different on those two recently added pages vs the one that works as expected. This bit of code is overriding the code that is currently present on the working page css.
.page-template-grid-page .content-wrapper.full-width { margin: 0; }I would maybe comment that out, to make sure it doesn’t affect other areas of the site.
.page-template-grid-page .content-wrapper.full-width { /* margin: 0; */ }Hope that helps get you started.
I wasn’t able to scroll on pages in Desktop as well. Although I didn’t initially see any errors in the JS console, my guess is that the Instagram plugin may have a conflict causing the issues. I would try disabling that to see if scrolling at least works again and then possibly see if that’s the case if there’s another way/plugin that may do the same thing? Hope that helps get you started.
Forum: Fixing WordPress
In reply to: trouble with forwardNot sure if you’ve read through this or checked out the additional resources pages/links down at the bottom of the link as well to see if one of those might help resolve your issue? Hope this helps.
https://codex.wordpress.org/htaccess
External Resources section:
https://codex.wordpress.org/htaccess#External_ResourcesForum: Fixing WordPress
In reply to: Address on PagesLooks like your permalinks are currently set to the WP defaults. If you want to change them so the address shows a nicer link in the url, you’ll want to adjust those. This is a pretty good tutorial on how to adjust them to your liking. Hope this helps.
Forum: Fixing WordPress
In reply to: Image qualityHey David,
Do you have a link to a page where this is happening by chance? Would be easier to troubleshoot the exact issue that way. Thanks!
Forum: Fixing WordPress
In reply to: weird wordpress description in the google search results of my blogYou might want to check out this plugin. Very popular in the WP community and will help resolve your issue for page descriptions and much more related to SEO. There are a lot of settings, but if you walk through them and check out a lot of there guides, it’s not as overwhelming as it may first seem. Hope this helps!
Forum: Fixing WordPress
In reply to: Missing the administration bar in the frontentCheck in WP-Admin, Users-> Your Profile -> Toolbar there should be a check box to turn off and on. Hope that helps.
Forum: Fixing WordPress
In reply to: center proper div with padding or marginLooks like on here you have an inline style width of 640px and max-width of 100%. I’d recommend moving those and adding them to the sermonnet class.
<div class="sermonnet" style="width:640px;max-width:100%;">so remove the styles above and add this to your css stylesheet:
.sermonnet { margin: 0 auto; max-width: 100%; width:640px; }The margin: 0 auto will center the items. Hope this helps!
Forum: Fixing WordPress
In reply to: [AddToAny Share Buttons] Buttons not showing on mobile devicesI was able to see the share buttons on my phone. Are you still seeing this on a particular device?
Forum: Fixing WordPress
In reply to: Can't center embedded TweetDo you have a link to your site where this is happening? It’s probably a matter of adjusting margins left and right to auto, but a link would help confirm that is in fact the issue. Thanks.
Forum: Fixing WordPress
In reply to: How To Give My Header Logo A Hover ColorWell the best way to do this would be to create a second image to match the same color of the links so when you hover over the icon/logo it will switch to the secondary image. Alternatively, You could probably add an opacity change to the css to get it close in color to the links. Might not be exact, but then you wouldn’t have to load a second image. You could do something like this and adjust the opacity value until you get your desired look. Hope this helps.
h1.site-logo a:hover { opacity: 0.70; }Forum: Fixing WordPress
In reply to: spaces in my post after importing pictures?Do you have a link to your site where the issue is happening? Seems a little unusual so having a link would help better troubleshoot the issue. Thanks!