Jarret
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twenty] Too much spaceHi, the following in Appearance->Customize->Additional CSS should fix the title issue
.singular .entry-header { padding-bottom: 0px; padding-top: 0px; }
Or at least it does on the site linked on your profile. Regarding the block spacing, do you have URL in particular you’re seeing the issue on so it can be investigated further?
Forum: Themes and Templates
In reply to: [Twenty Twenty] How to narrow width of Desktop Expanded MenuTry the following
.header-navigation-wrapper { width: 50% }
There is also the option of targeting the menu directly
.header-navigation-wrapper .primary-menu-wrapper { width: 50% }
But that offsets it if less than the default 100% and doesn’t line up properly along the right hand side of the layout.
Forum: Themes and Templates
In reply to: [Storefront] mobile versionHi, the fonts look the same to me but looking at your child theme’s style.css file there is the following right at the top
.entry-title { font-family:times }
So this should be fixed and set at whatever font family you want to use as well as closing it out with a ; at the end
.entry-title { font-family: "Times New Roman"; }
Do you have a screenshot of the differences you’re seeing? You can use https://snipboard.io to share them and provide the links on here.
Forum: Themes and Templates
In reply to: [Canape] blog/news pageWhat are you trying to replicate exactly? The “News” link on the demo site and the News link on your site look pretty similar to me. You just don’t have as many posts published to fill out the space.
Forum: Themes and Templates
In reply to: [Sela] Changing font colours on SelaHi, you can use the following in Appearance->Customize->Additional CSS
.entry-content { color: black; } .social-links ul a:before { background-color: red; }
Not sure if the first one will target all of the text that you’re looking to change. If not, let me know what it isn’t targeting and I should be able to get it updated.
For the second one, you can use either a color name or a hex code to determine the color:
Just pick the color you want, then look for the numbers/letters with the # in front of it and add that in
background-color: #e3e3e3;
Forum: Themes and Templates
In reply to: [Storefront] Add Qty selector in Category PagesHow are you getting to the /shop/vegetables URL that you linked? When visiting your site, if I click on Vegetables in the main URL I get linked to /product-category/vegetables which has the quantity listed there.
If I view a single product and click on the Vegetables category beneath the image/pricing I end up at /product-category/vegetables as well
Hi, looking at your site I see the following error in the Chrome console:
Failed to contact phone service URL. Please check phone system URL parameter and ensure CORS requests are allowed from current domain. (anonymous) @ callus.js?ver=1.5.3:27
Not quite sure what that means or it would cause the issue but you’d most likely want to contact the support team for that plugin and mention that to them to see if they know of a fix.
Forum: Themes and Templates
In reply to: [Canape] blog/news pageHi, which URL are you looking at that you want to replicate on your own site? The demo display on WordPress.com?
Forum: Themes and Templates
In reply to: [Storefront] Strofront child theme CSSI’m not senff but looking at your site right now the code you have in your child theme’s style.css is being applied on the site
When looking at the .col-full class I’m seeing the
max-width: inherit;
andpadding-left:80px;
in the Chrome dev toolsForum: Themes and Templates
In reply to: [Twenty Twelve] Hiding tagsYou could just use some CSS such as the following in Appearance->Customize->Additional CSS
.entry-meta { display: none; }
Though this will also hide the date of when the post was made.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Changing Primary color with CSSYou can use the following CSS
.color-accent,.color-accent-hover:hover,.color-accent-hover:focus,:root .has-accent-color,.has-drop-cap:not(:focus):first-letter,.wp-block-button.is-style-outline,a,blockquote,.border-color-accent,.border-color-accent-hover:hover,.border-color-accent-hover:focus,button:not(.toggle),.button,.faux-button,.wp-block-button__link,.wp-block-file .wp-block-file__button,input[type="button"],input[type="reset"],input[type="submit"],.bg-accent,.bg-accent-hover:hover,.bg-accent-hover:focus,:root .has-accent-background-color,.comment-reply-link,.fill-children-accent,.fill-children-accent *,.primary-menu > li > a,body:not(.overlay-header) .primary-menu > li > .icon,.modal-menu a,.footer-menu a, .footer-widgets a,#site-footer .wp-block-button.is-style-outline,.wp-block-pullquote:before,.singular:not(.overlay-header) .entry-header a,.archive-header a,.header-footer-group .color-accent,.header-footer-group .color-accent-hover:hover,.social-icons a,#site-footer button:not(.toggle),#site-footer .button,#site-footer .faux-button,#site-footer .wp-block-button__link,#site-footer .wp-block-file__button,#site-footer input[type="button"],#site-footer input[type="reset"],#site-footer input[type="submit"] { color: #118758 !important; }
Just set whatever hex code you want to use at the end, it should overwrite all of the classes that are used when configuring the Primary color in the Customizer.
Forum: Themes and Templates
In reply to: [Storefront] “Showing X results” problemGlad to hear you were able to get it figured out. You can probably reactivate that plugin. Caching isn’t necessarily a bad thing, just have to remember to always clear it out when making changes if you don’t see things being updated.
Forum: Themes and Templates
In reply to: [Storefront] Changing Product Page Small ImagesHi Brock, are you able to provide a link to your live site? If not, are you able to grab a screenshot of the area you’re referring to? You can upload the screenshots to https://snipboard.io and share the link here if so.
I know that the product navigation stuff usually only has the featured image showing as the area to click on so not quite sure where you are seeing the 2 images you mentioned showing.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Media & Text BlockThe CSS code I mentioned previously here that you have setup in your child theme is the cause for that white line showing up on the 2nd to last block.
If you comment that CSS out of your style.css file, save the changes and then refresh the page you can see that the 2nd to last block will be fixed and not show the additional image along the bottom.
The initial issue that was reported in the Trac ticket is still valid but the white line issue you are seeing is due to custom CSS you’ve applied in your child theme as the CSS does not exist within the default TwentyFourteen theme
Forum: Themes and Templates
In reply to: [Cubic] Some posts missing from home page set to show all postsHi, apologies for the confusion but I was able to replicate the issue. I had to enable JavaScript to load from the wp.com domain.
Quite odd that it removes that post, if you adjust the “Blog pages show at most” value in Settings->Reading to something higher, does it show the post then on the initial page load?