@phenomlab
Ah ok you play with max-width: 50%;
on floatcenter and position: sticky;
on floatright
That’s smart I didn’t necessarily think of that.
The result is perfect except on smartphone as you said.
–> I tried this as usual but it doesn’t work. An idea?
@media (max-width: 768px) {
#floatcenter {
display: none !important;
}
}
EDIT: Yep this code works for not display floatcenter div. I must find for floatright div
EDIT2: Ok @phenomlab with floatright div with this code :
@media (max-width: 767px) {
#floatright {
float: right;
bottom: 1px;
font-size: 90%;
line-height: 2.3;
display: flex !important;
position: static;
}
}
If you have a better solution tell me Mark
A big big thank you bro