inherit
257045
0
Jan 23, 2019 17:02:19 GMT -8
anaussiejoe
3
November 2018
anaussiejoe
|
Post by anaussiejoe on Jan 21, 2019 23:03:59 GMT -8
|
|
#eb7100
1480
0
1
Nov 21, 2024 14:52:33 GMT -8
Craig
209,196
September 2001
cmdynasty
|
Post by Craig on Jan 22, 2019 3:08:18 GMT -8
Hi You can modify the templates to have it display where you want. But it is a bit of an undertaking, and you would need a general of how you would want the content of the mini profile to display. I would recommend posting a template request with an outline of how you want it displayed, and hopefully someone will be able to produce something for you. support.proboards.com/board/84/request-template
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,521
August 2015
socalso
|
Post by Scott on Jan 22, 2019 14:14:12 GMT -8
anaussiejoe , 1) Go to Admin > Structure > Layout Templates, then Thread, Post List tab (layout template) 2) Beginning on line 6 you'll see this code: <td class="left-panel" rowspan="2"> $[post.created_by.miniprofile] </td> 3) Highlight that code and cut (ctrl+x) 4) Scroll down further to lines 38-39 you'll see this: </tr> </table> 5) Add a new line between lines 38-39 and type in: <tr> </tr>
6) Then add a new line between the <tr></tr> and paste the code you cut from step 3 so it looks like this: </tr> <tr> <td class="left-panel"> $[post.created_by.miniprofile] </td> </tr> </table> 7) Then delete this from the above code: rowspan="2" 8) Save Changes. 9) Now go to your CSS for that theme: Admin > Themes > Advanced Styles & CSS, Style Sheet tab. 10) On line 1171 (roughly unless you made changes) you should see this code: .mini-profile { color: @mini_text_color; font: @mini_text_font; background: @mini_background; border: @mini_border; .rounded-corners(@mini_border_radius); text-align: @mini_text_align; overflow: hidden; padding: 13px 10px; width:150px; } 11) Remove the: width: 150px;
12) Then scroll to the very bottom of the CSS and on a new line add the following: .mini-profile, .mini-profile .info, .mini-profile .personal-text {text-align:center;} 13) Save Changes. NOTE: This centers everything in the mini-profile (mostly). Let me know how that goes.
|
|