Hello
I am trying to edit one simple thing on the TB-wall profile page, the user avatar/image is way too small. No matter how I resize this in the CSS - which will affect everywhere else on the site - it never changes on the profile page.
What is the best way to override/change the current tb-wall profile page layout?
I have made user.tpl.php pages on my own and not had any changes apply to the tb-wall profile page.
Hi Rhino,
To change size of avatar, please edit this class from /css/articles.css in theme folder:
.user-picture img { width: 35px; height: 35px; }
Change width and height to your size.
Sometimes a caching can take up to 2 hours to get an update. To quick clear cache, please go to Configuration > Performance, then click 'Clear Cache'.
Regard,
Will
Hi!
Changing the articles.css has the unfortunate side-effect of also changing the size of the images in posted articles etc. I am looking to only make a difference in avatar size (and layout) on the user profile page. Nowhere else.
This is why I was looking to see if there's a tip on a user-page.tpl or similar, as I don't want to end up making the avatar really large on the entire site.
.user-picture img is used in several places in the theme.
For anyone else looking, add height: 45px; in articles.css to control submitted by user picture size
.node > .submitted .user-picture { width: 45px; height: 45px; display: inline-block; float: left; }