Archived topic
Mobile menu breaking
2 replies · Started by Germaine on October 21, 2019
Viewing posts 1–3 of 3
Mobile menu at https://tilton.com.au/projects/republic/ and all the other single projects 'breaks' - doesn't happen on other pages.
Can I get some help on this please?
Hi there,
its breaking because of this CSS you have added:
.single-projects span {
width: 100%;
display: inline-block;
}
You need this CSS to be more specific, for example this will only effect the SPAN tags within the page-hero:
.single-projects .page-hero span {
width: 100%;
display: inline-block;
}
This archived topic is closed to new replies.