That fixed it! Only 80px isn't enough, 40px is though! When the screen display width is reduced to portrait or thinner, so too does the rank image.
The default CSS forgets about reducing the rank image, so only the avatar image shrinks. Portrait thread viewers, mobile phone layout, are blasted with enormous rank images that overpower everything else on their screens.
I'd suggest cabot's css modification to be the better option over the default!
Make a copy of your original files before making any modification to the working CSS file(s).
Purge the cache (ACP) after saving your changes. And shift-refresh your forum thread page.
root/styles/%style%/theme/content.css approximately Line 700 in
Prosilver, find this section
/* Poster profile block
----------------------------------------*/
You will find this below it ~line 737:
Code: Select all
.profile-rank img {
max-width: 160px;
}
Replace with:
Code: Select all
@media (max-width: 700px) {
.profile-rank img {
max-width: 40px;
}
}
In
other styles, they may not contain the original Prosilver-like
.profile-rank img code at all, in which case, you'll want to ADD this code
below:
Code: Select all
.postprofile dt.no-profile-rank, .postprofile dd.profile-rank, .postprofile .search-result-date {
margin-bottom: 10px;
}
ADD the new
.profile-rank img code below it to look like this:
Code: Select all
.postprofile dt.no-profile-rank, .postprofile dd.profile-rank, .postprofile .search-result-date {
margin-bottom: 10px;
}
@media (max-width: 700px) {
.profile-rank img {
max-width: 40px;
}
}
Don't forget to
Purge the cache (ACP) after saving your changes. And shift-refresh your forum thread page, which for mobile browser users is accomplished by selecting the three-dot menu and holding down the refresh (clockwise-arrow).