nano Hey, can you provide a little screenshot of your issue ? I'm not sure I understand what you mean
edit : maybe you're talking about the choice I've made to "extend" the mobile version to the tablet version (i.e. I took all the css rules for <768px
and copy them to @media screen and (min-width: 768px) and (max-width: 991px) {
So if that's what you mean, if your screen is <991px
it's a choice I've made because I was not satisfied with the design compromise for tablets, it's not an issue.
However, if you want to use my theme without those big layout modifications, no problem ! You just have to delete the first part, between lines 16 and 342 (the /* ----- IMITATE SMARTPHONE BEHAVIOUR ON TABLETS ---- */
part). If you do this, you just have one more step :
Search for this block (near the end of the file) and remove the media
rule :
@media (min-width: 992px) { // -> DELETE THIS LINE
.Button--primary {
color: #FFF !important;
background: #212121 !important;
border: rgba(255, 255, 255, 0.12) solid 1px !important;
padding-left: 10px !important;
padding-right: 10px !important;
}
} // -> AND THIS ONE
I'll add those explanations in my first post !