Im struggling with this since yesterday to get a nice result...I have to make it different to this code, because we have a complete different header.
I have a question about those media-parts...
Why is this working?
@media screen and (max-width: 50em) {
.centerheader #logobox {
max-height: 105px;
margin-top: -15px;
}
}
@media screen and (max-width: 33.750em) {
.centerheader #logobox {
max-height: 55px;
}
}
I thought, if there is one advice in one media part you can not give another to the same thing?
I had changed this part in my forum a few weeks ago, because I wanted to see the stats in the boards and topics with my screen.
@media screen and (max-width: 64em){
.board_latest {
width: 40%;
min-width: 28em;
padding: 0 2px;}
.topic_latest.relative {
min-width: 24em;}
.board_stats, .topic_stats {
display: table-cell;}
}
And because of this, is that one not working:
@media screen and (max-width: 50em) {
.board_stats, .topic_stats {
display: none;}
}
The stats are now always there, in any size of the browser-window or resolution. It is okay, it is not looking ugly... but I don't understand it really. Did I something wrong?