Search code examples
csswordpresselementorright-to-left

Extra White Space on Wordpress website To the right


White Space on Wordpress website to the right when switching to rtl in elementor specific pages Here is webpage : site url

tried

html,  body {
    overflow-x: hidden;
}

but not working


Solution

  • Try adding this to your CSS:

    .rtl .elementor-top-section {
        left: 0 !important;
        width: auto !important;
    }