Archived topic
Adding border to mobile header using CSS
3 replies · Started by CRAIG on July 6, 2021
Hi folks,
I have added a border below the site header using the following CSS:
.site-header {
border-bottom: 1px solid #ececec;
}
I wanted the same border to appear when viewing the site on a mobile device so I added the following CSS:
#mobile-header {
border-bottom: 1px solid #ececec;
}
Could you let me know what you think this should be?
Hi there,
they both work fine, you can combine the CSS rules into one like so:
.site-header,
#mobile-header {
border-bottom: 1px solid #ececec;
}
Is that what you meant ?
Hi David,
I had already added the CSS to the site but the border wasn't displaying when viewing on mobile.
No idea why, but when I combined the code as you have suggested it has started to display properly when viewing via mobile
Thanks for your help
Glad to hear that