TinyPortal

Development => Support => Topic started by: darkangel on October 18, 2014, 02:43:24 AM

Title: User block question
Post by: darkangel on October 18, 2014, 02:43:24 AM
I asked in SMF forum cause after all the avatars most likely generate there but they usually tell me to come ask here...so here I be.

In the User block the avatar is kind of small. I would like to enlarge it a bit more but can not seem to find where it hides it code.

I have tried changing all avatar instances in each themes index.css file, in the tp stylesheet file and no matter where I can not get it to get larger.

Any ideas where I may have missed it.

It is all themes so I concentrated more on the tp files and the default template.
Title: Re: User block question
Post by: lurkalot on October 19, 2014, 07:11:54 PM
Give this a try.  /Themes/default/tp-style.css?fin11  around line 1762 


div.useravatar img {
  background: none repeat scroll 0 0 white;
  border: 1px solid #aaa;
  display: block;
  margin: 1em auto 0;
  overflow: auto;
  padding: 1px;
  width: 45px;
}


Change width from 45px to what you need.
Title: Re: User block question
Post by: darkangel on October 19, 2014, 09:41:31 PM
Thank you very much. I had tried all of the items and must have missed that one cause it worked today...yay
Title: Re: User block question
Post by: lurkalot on October 19, 2014, 10:31:11 PM
You're welcome.  :)