inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Aug 13, 2013 5:38:25 GMT -8
I didn't think about that. It's not that they are posting without a thread description. It's just that the key isn't setting. I'll have to add in the key permissions so that it can be changed to everyone.
|
|
inherit
133146
0
Nov 16, 2024 15:51:08 GMT -8
Alanna 🥀🖤
3,564
November 2008
alannab
|
Post by Alanna 🥀🖤 on Aug 14, 2013 8:11:10 GMT -8
Don't understand what a "key" is but I take it that you know what you're doing. I'll wait till you're done. *rocks back and forth*
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Aug 14, 2013 8:16:47 GMT -8
The key is what stores the thread description. And I have updated it, just waiting on it to be accepted into the library.
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Aug 15, 2013 10:10:46 GMT -8
The library has been updated.
|
|
inherit
133146
0
Nov 16, 2024 15:51:08 GMT -8
Alanna 🥀🖤
3,564
November 2008
alannab
|
Post by Alanna 🥀🖤 on Aug 15, 2013 11:46:19 GMT -8
Thanks!
|
|
Former Member
inherit
guest@proboards.com
131621
0
Nov 22, 2024 1:17:57 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Sept 26, 2013 16:32:28 GMT -8
I'm not entirely sure why but this isn't working on my site. Does it require any certain order in the Mange Plugin area? My site is alcryst.proboards.com/ and it's set to be mandatory on all boards. It simply isn't showing anywhere, though. I go to create thread and there's nothing but the subject line. =/
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Sept 26, 2013 16:38:36 GMT -8
Did you recently change the 'SUBJECT:' to all caps?
|
|
Former Member
inherit
guest@proboards.com
131621
0
Nov 22, 2024 1:17:57 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Sept 26, 2013 16:45:27 GMT -8
Yes, I changed it in the Templates maybe a week or so ago. Is that what is affecting it, you think?
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Sept 26, 2013 16:46:23 GMT -8
I'm almost positive that this is the case. If it is the case I can give you some CSS that will accomplish the same effect, but won't affect this plugin. So change it to 'Subject:'.
|
|
Former Member
inherit
guest@proboards.com
131621
0
Nov 22, 2024 1:17:57 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Sept 26, 2013 16:57:33 GMT -8
Yep! It's working now. =D I'd appreciate the CSS help =)
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Sept 26, 2013 17:01:28 GMT -8
Place this in your style sheet.
form.form_thread_new > div.subject_line td.subject { text-transform: uppercase; }
|
|
Former Member
inherit
guest@proboards.com
131621
0
Nov 22, 2024 1:17:57 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Sept 26, 2013 17:05:55 GMT -8
Thanks! All good to go now ^^
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Sept 26, 2013 17:07:34 GMT -8
Alright good.
|
|
Former Member
inherit
guest@proboards.com
131621
0
Nov 22, 2024 1:17:57 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Sept 27, 2013 14:11:43 GMT -8
I posted this here and was told to redirect here, so if this isn't a problem with the plugin, I apologize. Anyway, the post goes:
I have been modifying my Thread List appearance. You can see a live example HERE.
Currently, my Thread Descriptions are centering inside their box but not inside the full space allotted to them. Likewise, the Subject of the Thread is centering over the Thread Description box rather than inside its full space. To help illustrate, I made THIS demonstration, please view it to understand what I'm trying to explain.
The coding for my thread descriptions, placed in my style sheet, is as follows:
/* thread descriptions in thread list */ div.thread_description_list { text-transform: uppercase; color: #2d2821; font-family: times new roman; font-size: 12px; text-align: center; border-width: 1px; border-style: solid; border-radius: 2px; border-color: #2d2821; background-color: #88775b; padding: 2px 5px 2px 5px; margin-top: 2px; margin-right: 2px; }
The coding for my thread list, changed from the default in my style sheet, is as follows:
@thread_align_subject: center; @thread_align_created_by: center; @thread_align_replies: center; @thread_align_views: center; @thread_align_last_post: center; .threads .main { border-bottom: 10px solid #534430; width: 80%; text-align: @thread_align_subject; } .threads .created-by { width: 0%; text-align: @thread_align_created_by; } .threads .replies { width: 0%; text-align: @thread_align_replies; } .threads .views { width: 0%; text-align: @thread_align_views; } .threads .latest { border-left: 2px solid #534430; border-bottom: 10px solid #534430; width: 20%; text-align: @thread_align_last_post; } .threads .icons { white-space: nowrap; } .threads .control-icons img { } .threads .control-icons .lock_icon, .threads .control-icons .falling_icon, .threads .control-icons .event_icon, #bookmarks.threads .bookmark_icon { width: 0; padding-right: 0; } .threads .checkbox { width: 2%; } .threads .checkbox-placeholder { width: 5px; } .threads .main table { table-layout: auto; } .threads table.list { table-layout: auto; } .threads .item.new .new-icon { display: inline-block; } .threads .item.announcement.last > td { border-width: 0px 1px 10px 0px; border-style: solid; } .threads .item.announcement.last > td.checkbox, .threads .item.announcement.last > td.last { border-right: none; }
If Shorty and any others could take a look at this and help me get the entire subject and thread description centered, I'd really appreciate it. I'm still learning coding so my fluency is still a bit inept.
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Sept 27, 2013 14:57:55 GMT -8
Alright add this to your CSS.
.main.clickable {padding: 10px !important;} .main.clickable > table {width:100% !important;}
And that should do it for you.
|
|