Is there a way to keep the bottom menu aligned in one row on all screen sizes? I attempted using display: inline-block
, but it doesn't seem to work for me.
Below is the CSS code:
footer #middle-footer {
background: #F6F6F6;
color: #000;
font-size: 14px;
font-weight: 300;
padding: 50px 0 10px 0;
text-align: center;
left: 0;
bottom: 0;
width: 100%;
height: auto;
display: inline-block;
}
.bottom-menu ul {
list-style-type: none;
letter-spacing: 0.19px;
font-size: 14px;
}
.bottom-menu ul li {
display: inline-block;
font-family: 'Open Sans Bold', sans-serif;
line-height: 1.8;
}
.footer-mobile-version {
display: inline-block;
}
You can view the link here: