bduclos
Forum Replies Created
-
@utmwas988,
You can try the https://ww.wp.xz.cn/plugins/twentig plugin which adds a lot of options to the Twenty Twenty theme.Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Sticky menuYou can check the https://ww.wp.xz.cn/plugins/twentig plugin to make the header sticky.
Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Replace footer logo with footer menuI think what you want to achieve requires a child theme. Or you can try the Twentig plugin, which has an option for the footer layout. You can remove the footer’s logo and set the footer layout to “inline” to align the footer menu with the copyright.
Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Twentytwentyone Change Pullquote font sizeThis is the CSS to change the pullquote font-size.
:root {--pullquote--font-size:40px;}Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Post GridI’m using the Twentig plugin https://ww.wp.xz.cn/plugins/twentig which customizes Twenty Twenty-One. It has the option to display the blog as a grid. If you don’t want to use the plugin, you can try to copy the CSS.
I’m using the Twentig plugin https://ww.wp.xz.cn/plugins/twentig to replace the theme fonts with Google Fonts. It also includes other font settings that you might find useful.
Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Background imageYou’re welcome.
Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Background imageYou can use the Background Image setting inside the Customizer to set the image for light mode. And add some CSS to change the image URL for dark mode (set the url to an image that you’ve uploaded on your site):
.respect-color-scheme-preference.is-dark-theme body { background-image: url(https://yourdomain.com/image.jpg); }