inherit
262438
0
Sept 12, 2021 3:21:10 GMT -8
thereddiamanthe
75
October 2020
thereddiamanthe
|
Post by thereddiamanthe on Oct 6, 2020 2:09:30 GMT -8
1. where exactly can the font size of Boards Threads Posts Last Post row & Last Post column be modified
clarification: if looking also atbthis forum you will see the column with 'folder icons' i would like to change the text size of all other Boards Threads Posts Last Post words font size
2. the folder icons mentioned in the last paragrapgh, plus including all other icons positioned left of the such words troughout the forum globally - I would like to minimize as much as possible
In my opinion the current size is to invasive effectively collecting much more attention than needed
|
|
inherit
262438
0
Sept 12, 2021 3:21:10 GMT -8
thereddiamanthe
75
October 2020
thereddiamanthe
|
Post by thereddiamanthe on Oct 6, 2020 2:29:15 GMT -8
3. i would like the 'like' function to be 'Thank You' instead & the profile window displayef left of the posts to show total of thanks received
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Oct 6, 2020 7:17:22 GMT -8
⓵To change the font-size of the Table Header in the board lists on the Home page: From your Admin panel, navigate: Admin Home> Themes> Advanced Styles & CSS then click on the Style Sheet tab. Select the desired theme in the dropdown to the right of Current ThemeScroll to the very bottom of the Style Sheet and add this: /*Color and background color for Table Headers in board lists */ .container.boards th{ font-size:8px; } /* end of section */ (change the 8px to whatever size you like) Click the Save Changes button at the bottom of the page or the Save Theme button near the top. If you would like to also carry that change over to the Thread List on each of your boards, use this instead: /*Color and background color for Table Headers in board lists and thread lists */ .container.boards th, .container.threads th{ font-size:8px; } /* end of section */ ②To remove the left-most column which holds the folder icons in the board lists on the home page, add this below the previous addition I had you make: /*Remove folder icon column in board lists */ .container.boards .icon{ display:none; } /* end of section */ (remember to click the Save Changes or Change Theme button.) 3. i would like the 'like' function to be 'Thank You' instead & the profile window displayef left of the posts to show total of thanks received I've made a modification to these instructions from Scott so the text of to the left of the member's like tally will read Thanks received. To add likes to the Mini Profile: 1. Go to Admin > Structure > Layout Templates 2. Click on the Mini-Profile layout template 3. Look for this line of code (should be around line 24): Posts: $[user.posts]{if $[user.gender]}<span class="float-right">$[user.gender.image]</span>{/if} 4. Add a new blank line AFTER the above and paste in this code: <br />Thanks recieved: $[user.likes] 5. Click the Save Changes button. You're then good to go! Is there some other place where you want to change Like to Thank You?
|
|
inherit
262438
0
Sept 12, 2021 3:21:10 GMT -8
thereddiamanthe
75
October 2020
thereddiamanthe
|
Post by thereddiamanthe on Oct 6, 2020 13:12:25 GMT -8
Thanks,
yes all of the places where 'like' is [presume only under the published post?]
& this thanks to be shown on mini micro and big profile
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Oct 6, 2020 14:22:24 GMT -8
Thanks, yes all of the places where 'like' is [presume only under the published post?] I was looking for a purely CSS fix for that but it appears far more snarly than I can handle. Something as simple like this: /* Change text of 'likes' to 'gave thanks' */ span.likes{ font-size:0px; } span.likes a.user-link{ font-size:10px; display:inline; } span.likes::after { font-size:10px; content: " gave thanks"; } /* end of section */ will always add the gave thanks in the div.content-head that exist in every post. The problems stems from the fact that the $[post.likes] inserts an empty span with the likes class, even if the post wasn't liked. Other methods to get around this are fraught will problems because the text varies depending on how many people liked the post. If only one person liked it, the text 'likes this' is placed after the member's name. If two people liked it, there is an and between the members' names and like this (singular) appears after the second member's name. If more than two people liked the post, there is a comma between the two names, followed by and [number of additional members] more like this. Perhaps one of the expert coders can manage all this through CSS but I think they'll probably use JS. At any rate, this is beyond my level of skills. & this thanks to be shown on mini micro and big profile The instructions for the mini-profile modification is in my quote of Scott's instructions. I recommend against adding anything to the micro-profile. What's already there takes up all the space provided when a micro-profile is displayed. To add to the User Profile ... From your Admin panel, navigate: Admin Home> Themes> Layout Templates. Select the desired theme in the dropdown to the right of Current Theme. Click on User Profile. Click on the Summary tab. Somewhere around lines 78 through 81, you'll find these four lines: <tr> <td class="headings">Posts:</td> <td>$[user.posts]</td> </tr>
Add a blank line after those four lines and add these four lines: <tr> <td class="headings">Thanks received:</td> <td>$[user.likes]</td> </tr>
then click the Save Changes button.
|
|
inherit
262438
0
Sept 12, 2021 3:21:10 GMT -8
thereddiamanthe
75
October 2020
thereddiamanthe
|
Post by thereddiamanthe on Oct 8, 2020 11:58:23 GMT -8
thanks
|
|
inherit
262438
0
Sept 12, 2021 3:21:10 GMT -8
thereddiamanthe
75
October 2020
thereddiamanthe
|
Post by thereddiamanthe on Oct 8, 2020 11:59:20 GMT -8
would you add code the 'thanks received' for the profile left of posts
|
|