Hey,
Before getting into the question about styling, just trying to see if I’m even on the right track. (Full disclosure I have very little knowledge of CSS/Code)
#1) So first thing I did was go try to replace the following lines in the spGroupView.php file that are listed as being “Column 1 of the forum row”
sp_ColumnStart(‘tagClass=spColumnSection spLeft&width=6%&height=55px’);
sp_ForumIndexIcon(‘tagClass=spRowIcon spLeft’);
with the above listed code of
sp_ColumnStart(“tagClass=spColumnSection spLeft$spOpaque&width=6%&height=55px”);
sp_ForumIndexIcon(‘tagClass=spRowIcon spLeft’);
(Now when I see them side by side I notice the only difference is the $spOpaque line added before the width and height)
#2) Then per the above instructions, I located the Group ID#s that are listed on the Manage Group and Forums tab
#3) Based on that, I changed the above code for the Groups IDs 2-5 as follows:
$spOpaque = '';
if($spThisUser->guest && $spThisGroup->group_id != 2) $spOpaque = ' spOpaque';
$spOpaque = '';
if($spThisUser->guest && $spThisGroup->group_id != 3) $spOpaque = ' spOpaque';
$spOpaque = '';
if($spThisUser->guest && $spThisGroup->group_id != 4) $spOpaque = ' spOpaque';
$spOpaque = '';
if($spThisUser->guest && $spThisGroup->group_id != 5) $spOpaque = ' spOpaque';
Assuming that those first few steps were correct, my big question now is
A) Where exactly to place the code.
(I tried to add it to the default.php file but I didn't notice any changes in the status. Same for GroupView file )
B) Am I supposed to be plugging/chugging or complimenting some other code for it to have any noticeable
effect in the first place? (Which could obviously explain why I haven't seen any effects on the opacity for guests)
Thanks Again in Advance!