cdcampbell26
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Title does not fit on mobile siteIt looks like it partially worked; I think if you now add the following CSS to what you already added it should fix it up for you! It does decrease the font size some though because your word is so long it won’t fit nicely.
.h1.inner-header { white-space: pre-line; overflow-wrap: break-word; font-size: 32px !important; }
Forum: Fixing WordPress
In reply to: Title does not fit on mobile siteSo if you have somewhere you’ve been adding CSS to the site, that’s where you would add that. If you don’t have access to your website’s theme files, it’s probably best to download a custom CSS plugin like this https://www.ads-software.com/plugins/simple-custom-css/ once you activate it you can add the CSS I posted to it. You can also go to Appearance > Theme Editor and add it to the style.css there, though I wouldn’t recommend editing code directly in the Theme Editor like this, especially if you don’t have much coding experience. Let me know if you run into any problems and if you’re able to get it resolved!
Forum: Fixing WordPress
In reply to: Title does not fit on mobile site@mehkas Ah I see the issue; I’m not sure what is causing it but you have something causing a horizontal overflow. So for a quick fix you could add this to your stylesheet:
html,body { overflow-x: hidden };
Forum: Fixing WordPress
In reply to: Title does not fit on mobile siteHello @mehkas
When you say the title doesn’t fit, do you mean you’d like the text to wrap to fewer lines on mobile? I did also notice there are inline-styles on the heading that add some
!important
rules which you won’t be able to override in your stylesheet. The font size is set topx!important
but doesn’t have an actual pixel number attached to it there so it falls back to your style onh1.inner-header
which is set tofont-size: 42px!important
Forum: Fixing WordPress
In reply to: No Admin Access | Login Page Will Not DisplayThis is probably due to a plugin conflict with your theme or another plugin. I’m seeing 41 resources failing to load on your blog page, including tons of CSS files (which is way the styles are wonky) https://www.dropbox.com/s/ia0klmfb0ijso30/Screenshot%202016-11-01%2000.35.21.jpg?dl=0
I’d suggest going into your site via FTP and changing the wp-content/plugins folder temporarily to something like plugin-xx and then logging into your admin as normal. From there you can deactivate plugins until you find the culprit. I’d also recommend doing a malware scan. Download a plugin such as Wordfence and make sure you don’t have any malicious files on the server.
Forum: Plugins
In reply to: [Genesis Testimonial Slider] Suggestion: A few more fieldsGoing to +1 this ??
Forum: Plugins
In reply to: [WooCommerce] Proceed to checkout not workingAh the solution ended up being fairly easy–someone had disabled their shipping zones so once I enabled those again, completing orders works.
Thanks for checking back in here!
Forum: Plugins
In reply to: [WooCommerce] Proceed to checkout not workingUgh–I’m an idiot. I meant to say the Place Order button doesn’t work. Yes, the Proceed to checkout works fine.
Forum: Fixing WordPress
In reply to: White space on right side of mobile siteWhoops—just saw you already did—thanks ??
Forum: Fixing WordPress
In reply to: White space on right side of mobile siteGlad it helped ??
Would you mind marking this thread as ‘resolved’?
Thanks and have a great week!
Forum: Themes and Templates
In reply to: [Eemeli] child page in the top menumatthieugodts perhaps you could just add a ‘custom link’ to the menu and set the URL to the child page? That should work.
Forum: Fixing WordPress
In reply to: How to have image fill website.Right but I’m saying in your style.css to give it a height of 100% like this:
.entry-background { height: 100%; }
Forum: Fixing WordPress
In reply to: How can i remove page title from woocommerce pages?Yeah so what you’ll want to do is add the body class of only the page(s) you want the title to not show on, like this:
.post-type-archive-product .product-page-title { display: none; }
You can see this by opening the site in Chrome and looking in the code inspector.
Forum: Fixing WordPress
In reply to: Removing a header and footer from page templateGlad I could help ??
Forum: Fixing WordPress
In reply to: How to have image fill website.Check out entry-background where I added height: 100% and see how it solved the issue on my screen: https://i.imgur.com/VPJCBZ1.png