Forum Replies Created

Viewing 15 replies - 16 through 30 (of 2,781 total)
  • Hi, 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?

    Try 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.

    Hi, 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.

    What 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.

    Hi, 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:

    https://htmlcolorcodes.com/

    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;

    How 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.

    Hi, which URL are you looking at that you want to replicate on your own site? The demo display on WordPress.com?

    https://wordpress.com/theme/canape

    I’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; and padding-left:80px; in the Chrome dev tools

    You 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.

    You 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.

    Glad 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.

    Hi 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.

    The 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

    Hi, 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?

Viewing 15 replies - 16 through 30 (of 2,781 total)