DBA Well-known member Sep 6, 2012 #1 How would I go about forcing a certain style to the forum homepage, for all users? Did I miss an option somewhere or will this have to be custom?
How would I go about forcing a certain style to the forum homepage, for all users? Did I miss an option somewhere or will this have to be custom?
Jake Bunce Well-known member Sep 6, 2012 #2 There isn't a direct option for this. What about your style do you want to change on the index page? There might be a template condition you can use. Upvote 0 Downvote
There isn't a direct option for this. What about your style do you want to change on the index page? There might be a template condition you can use.
DBA Well-known member Sep 6, 2012 #3 Jake Bunce said: There isn't a direct option for this. What about your style do you want to change on the index page? There might be a template condition you can use. Click to expand... Page fixed width for the forum home and category pages. Ok here's what I did, hopefully there's a better way. lol Added this to the PAGE_CONTAINER template Code: <xen:if is="in_array({$contentTemplate}, array('forum_list', 'category_view'))"> <xen:require css="dba_fixed.css" /> </xen:if> and put this in the dba_fixed.css template Code: .pageWidth { width: 990px !important; margin: 0 auto !important; } Upvote 0 Downvote
Jake Bunce said: There isn't a direct option for this. What about your style do you want to change on the index page? There might be a template condition you can use. Click to expand... Page fixed width for the forum home and category pages. Ok here's what I did, hopefully there's a better way. lol Added this to the PAGE_CONTAINER template Code: <xen:if is="in_array({$contentTemplate}, array('forum_list', 'category_view'))"> <xen:require css="dba_fixed.css" /> </xen:if> and put this in the dba_fixed.css template Code: .pageWidth { width: 990px !important; margin: 0 auto !important; }