Hello everyone, I've got three questions :D
1. How can I change the cover image? ie to fix one chosen image by me, to replace it with the default... 2. How can I change the size of the avatar image, the one that appears in topics? - E.g: So the image appears on my forum (theme by IPS Focus):
And so I want to show, or at least similar (theme default modified): So.. the idea is that I want to do bigger picture avatar. 3. How can I add more personal information, below posts? - E.g: or E.g 2 (image from xenforo) #Sorry for my bad English!
------------------2 Resolved! [TuT] 1. Go to Admin->Customization->Theme->Edit theme and search in CSS: misc.css 2. Search in misc.css ".ipsUserPhoto_large img, img.ipsUserPhoto_large, .ipsUserPhoto_large:after {" now change WIDTH and HEIGHT in the desired resolution! 3. Edit:
{{if theme.rounded_photos}}
border-radius: 45px;
{{endif}}
in
/* {{if theme.rounded_photos}}
border-radius: 45px;
{{endif}}*/
everything should look like so:
---------------1 Resolved! [TuT] 1. Go to Admin->Customization->Theme->Edit Theme and search in CSS: misc.css 2. Search in misc.css ".ipsPageHead_special {" 3: Edit:
.ipsPageHead_special {
border-radius: 4px 4px 0px 0px;
padding: 15px;
color: #fff;
position: relative;
background-color: {theme="profile_header"};
in
.ipsPageHead_special {
border-radius: 4px 4px 0px 0px;
padding: 15px;
color: #fff;
position: relative;
background-image: url("WWW.YOUR_IMAGE_LINK.COM");
everything should look like so: P.S: If you can help me with requirement 3 I would be grateful! #Sorry for my bad English!