How to add spacing on the right side of the logo image?
hi @hamzaabbas
Based on your current structure, you can add below code to end of base.css file
h1#clubs-header > img:first-child {
padding-left: 100px; // for left side padding
padding-right: 100px; // for right side padding
}
From the screenshot it seems you meant left spacing instead of the right spacing.
So the above code will spacing to the left and right of the logo. You can update it as per your requirement.
If this information was helpful to you, please give it a Like. If it resolved your issue, kindly hit Like and mark it as the Solution! Thank you!
Thank You!
