I need to add a language options paragraph at the top of the site… but it shifts the logo to the left - that way it’s no longer centered.
Is there a way, other than using absolute positioning to fix this problem? Basically so that the logo ‘ignores’ the EN|SK element and stays centered relative to the page.
I tried using almost every display property value, but that doesn’t do anything.
There certainly will be a way, but we need to see your HTML/ CSS to advise properly. If you can’t post a link, check out this thread for tips on code posting.
For a small item like this, absolute positioning is fine in a responsive site. It will always be in the top right corner of the container, however wide or narrow.
The key is to give the container position: relative, and then the absolutely positioned element will be positioned in relation to that container.
You didn’t supply a functional example, as suggested in my link above. I hope you’ll read that link.