Disabling double vertical scrollbar and horizontal scrolling?

Ok I’ve managed to find a solution to this 😊 It was to remove all previous overflow elements and replace it with this: @media (max-width:480px) {#page {overflow-x:hidden}} I now have no double vertical scrollbars and no horizontal scrolling on mobile devices – result! Hopefully leaving this post here will help someone else some day 😊 … Read more

How to remove class=”wp-block-heading” from Heading tags?

you can remove the class=”wp-block-heading” attribute from your heading tags by modifying your theme’s functions.php file or by using a plugin. Option: Modify functions.php Go to Appearance > Theme Editor in your WordPress dashboard. Click on the functions.php file on the right-hand side. Add the following code at the end of the file: function remove_block_css(){ … Read more

Wrap post titles containing slashes on narrow viewports

I have not found a way to specify that a slash should be treated like a hyphen. One potential workaround is to add the style overflow-wrap: break-word;. This will allow long words to break without affecting the breaking of other words. But it will just break at whatever character would cause overflow, it doesn’t prefer … Read more