jakedohm
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Buttons in Sidebar Won't WorkTry clicking on the arrow beside the primary widget section or secondary widget section to drop down widgets.
Forum: Fixing WordPress
In reply to: Buttons in Sidebar Won't WorkWhat widget areas do you see on the right side of the widgets page?
Forum: Fixing WordPress
In reply to: Buttons in Sidebar Won't WorkGo the Appearance > Widgets, and find the sidebar widget.
Then look at the bottom of the bottom widget for some code that will look something like this:
<a href="https://www.mwsservices.org/www.mwsservices.org/gallery"><img src="some url.jpg"></a>
Replace https://www.mwsservices.org/www.mwsservices.org/gallery with https://www.mwsservices.org/shop/
Forum: Fixing WordPress
In reply to: Buttons in Sidebar Won't WorkHead over to Appearance > Widgets, and look for the sidebar widget.
It looks like the widget link should be https://www.mwsservices.org/gallery, but that page gives a 404. What link do you want the button to link to?
Forum: Fixing WordPress
In reply to: Hemingway Default Header and TextLooks good to me.
I’d recommend using display: none instead of visibility: hidden
.blog-title { display: none; }
Forum: Fixing WordPress
In reply to: Hemingway Default Header and TextPlease provide the link to your website.
Forum: Fixing WordPress
In reply to: Unable to edit uneven thumbnails. Any ideas?All of the images are showing up perfectly on my end now.
Are they for you?
Forum: Fixing WordPress
In reply to: Unable to edit uneven thumbnails. Any ideas?Try this, and put it at the very bottom of your ‘style.css’ file.
.wolf-post-has-summary .wolf-last-post-thumbnail { width:135px !important; }
Forum: Fixing WordPress
In reply to: Unable to edit uneven thumbnails. Any ideas?Is it changing anything on the page here: https://www.eaglemontentertainment.com
Forum: Fixing WordPress
In reply to: Unable to edit uneven thumbnails. Any ideas?Try this
.wolf-post-has-summary .wolf-last-post-thumbnail { width:135px; }
Let me know how that works for ya,
JDForum: Fixing WordPress
In reply to: Unable to edit uneven thumbnails. Any ideas?It really doesn’t matter where you put the code in your stylesheets.
Just log into your admin panel, then go to Appearance > Editor.
Then in the right sidebar, select ‘style.css’ or ‘custom.css’. If you don’t see either of those, any file ending in ‘.css’ is fine. Then copy and paste that code anywhere in the css file.Does that make sense?
Forum: Fixing WordPress
In reply to: Unable to edit uneven thumbnails. Any ideas?Just copy that code I gave above into one of your stylesheets (files that end in .css) and it should work…
Does that make sense?
Forum: Fixing WordPress
In reply to: WooCommerce shop layoutI would also recommend adding this code:
.woocommerce ul.products li.product h3 { padding: .5em 0; margin: 0; text-align: center; padding-right: 2px; padding-left: 2px; font-size: 1em; } .woocommerce ul.products li.product .price { padding-left: 10px; }
I just makes the titles and prices look a bit better ??
Forum: Fixing WordPress
In reply to: WooCommerce shop layoutHi Ely1,
Replace the code I gave you for
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button
With this:
font-size: 12px !important; margin-left: 0px; text-align: center; height: 24px;
EDIT: Also add a height to the same div class as above:
`height: 24px;’Let me know if you have ANY more trouble ??
Forum: Fixing WordPress
In reply to: WooCommerce shop layout@wp Gurus, the code I submitted is a good patch tho. It’ll work well.