inherit
170861
0
Feb 18, 2013 13:07:56 GMT -8
Conspatti Motarelli
5
August 2011
motarelli
|
Post by Conspatti Motarelli on Feb 3, 2013 3:36:11 GMT -8
Can this be edited? I've looked in the editor (Themes > Colours & Styles > Pages > Categories) and I've found the way to change the column alignments, but not the width. I can change the width of the entire forum but even then the Last Post column sometimes stretches thread titles across two lines. It's not a major problem, it's more for aesthetics than anything, but I thought I'd ask!
I've been using the Visual Editor rather than the Style Sheet because I have no idea what I'm fiddling about with.
Other than that, I love everything about v5!
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Feb 3, 2013 4:23:36 GMT -8
Admin > Themes > Colors and Styles > Style Sheet
I assume you want Board's last post width to change, since you mentioned categories? I will show where both are anyway, they are both near each other.
(keep in mind i have custom CSS in my style sheet, so yours wont be on the same line, but it should be close)
Scroll down to about line 860, and find this:
.boards .main { width: 70%; text-align: @board_align_main; } .boards .threads { width: 0%; text-align: @board_align_threads; white-space: nowrap; } .boards .posts { width: 0%; text-align: @board_align_posts; white-space: nowrap; } .boards .latest { width: 30%; text-align: @board_align_last_post; }
edit the bit for "latest". I'm sure you can work out the rest lol. For threads scroll down a tiny bit more, to roughly line 884:
.threads .main { width: 85%; text-align: @thread_align_subject; } .threads .created-by { width: 0%; text-align: @thread_align_created_by; } .threads .replies { width: 15%; text-align: @thread_align_replies; } .threads .views { width: 0%; text-align: @thread_align_views; } .threads .latest { width: 0%; text-align: @thread_align_last_post; }
(don't worry that my numbers/percentage are weird, I have a custom thread list + board mod)
|
|
inherit
170861
0
Feb 18, 2013 13:07:56 GMT -8
Conspatti Motarelli
5
August 2011
motarelli
|
Post by Conspatti Motarelli on Feb 3, 2013 4:43:59 GMT -8
Thank you so much! That Style Sheet was far less intimidating than I was expecting, haha. Yeah, I should've been more specific, I did mean Board's Last Post.
Thanks again!
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Feb 3, 2013 4:49:33 GMT -8
Thank you so much! That Style Sheet was far less intimidating than I was expecting, haha. Yeah, I should've been more specific, I did mean Board's Last Post. Thanks again! Just keep in mind 1 thing.. The CSS is laid out the same way (in the same order) as it is in the Visual Editor of Colors and Styles. So you can easily work yourself upwards or downwards from a certain point, plus they are all named accordingly too (/* Board List */ for example, or /* Thread List */). Note pad is always great too =D It's a life save in fact haha.
|
|