[ad_1]
[ad_2]
This webpage consists of one html part and the menu on top is shifted to the right. It should begin from the edge of the screen. How do I fix this?
This webpage consists of one html part and the menu on top is shifted to the right. It should begin from the edge of the screen. How do I fix this?
add this code to your theme custom css section:
body {
display: flex;
justify-content: start;
}