I am trying to reduce the space between two elements on my page.
I have edited the following code:
.logo-bar{
text-align:center;
margin-bottom: -15px;
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
}
This has corrected the space on desktop however on mobile it means the text element below actually pushes over the element above, so they are overlapped.
How can I.adjust the code so its correct on both mobile and desktop?
Thanks