Twentig
Forum Replies Created
-
Hi,
Thanks for your feedback. Can you please tell me what kind of errors you are experiencing with our plugin?
When you talk about settings, are you talking about the settings that you see in the WordPress dashboard under Twentig > Settings or the Customizer settings?Have a nice day,
TomHi,
I see on your site that you’re using the myCred plugin. This plugin adds CSS that removes the background color of the focus button. To override it, you can add some custom CSS (Customizer > Additional CSS):
.wp-block-button:not(.is-style-outline):not(.has-background) .wp-block-button__link:focus { background-color: #d61347; }I hope the above is useful to you.
If you enjoy Twentig, please rate it. It would really help me out 🙂
TomHi Andy,
Inside the Customizer, open Twentig Options > Header and select the Stack option as the Header Layout,
I hope the above is useful to you.
If you enjoy Twentig, please rate it. It would really help me out 🙂
TomHi Neil,
To change the hamburger menu icon for the Twenty Twenty theme, you can add some custom CSS (Customizer > Additional CSS, change the #ff0000 value with your own color):
body:not(.overlay-header) #site-header .toggle { color: #ff0000; }I hope the above is useful to you.
If you enjoy Twentig, please rate it. It would really help me out 🙂
TomHi,
Thank you for your message and support. Yes, we’ll continue to maintain the plugin in the future.
If you enjoy Twentig, please rate it. It would really help me out 🙂
TomHi,
Sorry for the late reply.
Unfortunately, it’s not possible to achieve this layout (multiple 3 columns grid turning to 2 columns) with the Columns block.
To create a single “card with shadow” block, you can use the Columns block and set its column number to 1. Then adjust the column width as you like. And if you need to center it, add the tw-justify-center class in the “Additional CSS Class(es)” field of the columns block.
The following code can help you start:
<!-- wp:columns {"className":"tw-justify-center","twColumnStyle":"card-shadow"} --> <div class="wp-block-columns tw-justify-center tw-cols-card tw-cols-card-shadow"><!-- wp:column --> <div class="wp-block-column"><!-- wp:image --> <figure class="wp-block-image"><img src="https://s.w.org/images/core/5.5/don-quixote-02.jpg" alt=""/></figure> <!-- /wp:image --> <!-- wp:heading {"level":3} --> <h3>Single Card</h3> <!-- /wp:heading --> <!-- wp:paragraph --> <p>Lorem ipsum dolor sit amet, commodo erat adipiscing elit. Sed do eiusmod ut tempor incididunt ut labore et dolore.</p> <!-- /wp:paragraph --></div> <!-- /wp:column --></div> <!-- /wp:columns -->I hope the above is useful to you.
TomHi,
You need to use media queries:
@media (max-width: 651px) { #Section01, #Section01a { padding-top: 3em; margin-top: -3em; } }Hope that helps,
TomHi JP,
The Twenty Twenty theme displays the Pinterest icon for the .com URL. So if you replace
https://www.pinterest.co.uk/withhttps://www.pinterest.comin your URL, the icon will be displayed. Pinterest.com is automatically redirected to your local country.Hope that helps,
TomMy pleasure.
If you enjoy Twentig, please rate it. It would really help me out 🙂
TomGlad it works!
If you enjoy Twentig, please rate it. It would really help me out 🙂
TomHi,
On this page https://lighterhrstage.wpengine.com/blog/test-post-with-sections-b/, the overlap happens because you’ve chosen the green color, which is one of the theme’s predefined colors. Twenty Twenty-One makes the group’s inner container inherit the background color only for the predefined colors. To fix it, either you set a custom color (which you’ve done on your 3rd page) or add the following CSS to remove the inner background color.
.wp-block-group .wp-block-group__inner-container { background-color: transparent !important; }https://lighterhrstage.wpengine.com/blog/returning-to-the-workplace-in-2021-key-considerations-for-uk-employers To make the last link work, you can add a z-index on the group that contains the table of contents.
.toc { z-index:2 }Hope that helps,
TomHi,
Thanks for the heads-up. There’s indeed an issue with the custom footer when the “Display post content” option for the blog posts is unchecked. We’ll fix it in the next release.
If you need to fix it urgently and if you’re comfortable editing the plugin file, open the
twentig/inc/twentytwentyone/footer.phpfile.
Line 103, replace:<?php elseif ( 'custom' === $footer_layout ) : $block_id = get_theme_mod( 'twentig_footer_content' ); twentig_render_reusable_block( $block_id ); ?>by
<?php elseif ( 'custom' === $footer_layout ) : remove_filter( 'the_content', '__return_empty_string' ); $block_id = get_theme_mod( 'twentig_footer_content' ); twentig_render_reusable_block( $block_id ); ?>Have a nice day,
TomHi,
This responsive layout is the default behavior set by the WordPress block editor. Twentig adds a “Columns stacking” option to change the responsive layout (see screenshot).
You can either set it to “Small screens” to keep a 3-columns layout on tablet devices or set it to “Medium screens” to stack the columns on tablets.I hope the above is useful to you.
TomHi Federico,
When you install a parent theme and utilize the Customizer, and then create a child theme, it doesn’t inherit any of the settings previously set for the parent theme (see https://core.trac.wordpress.org/ticket/27177)
You might try a plugin to export/import the customizer settings to get around this.
https://wordpress.org/plugins/customizer-export-import/I hope the above is useful to you.
TomHi,
The WordPress block editor doesn’t add a color option to the search block, but its color can be modified with custom CSS. If you need help with CSS, could you please share the URL of your website?
Thanks,
Tom