Shadowdare
MVPShadowdare MVP
I'll be away on vacation next week and will be back by the end of the month.
Reactions
-
Re: YAGA question regarding ranks
Here's a way to set the margins for the rank icons if they're all the same size: .Discussion .AuthorInfo .Rank:after { margin: -7px 0;}.Comment .AuthorInfo .Rank:after { margin: -10px 0;} Notice that… (View Post)2 -
Re: YAGA question regarding ranks
Remove margin: -10px 0; from the .Rank.Rank-rank-5:after section and add these two new sections in the CSS file: .Discussion .Rank.Rank-rank-5:after { margin: -7px 0;}.Comment .Rank.Rank-rank-5:after… (View Post)1 -
Re: sign out
Sometimes changing the cookie name to something unique fixes that issue. Open the /conf/config.php and add this line to the bottom: $Configuration['Garden']['Cookie']['Name'] = 'betaVanilla123'; &quo… (View Post)1 -
Re: Removing the recent discussions and activity from page sidebars?
@r0obert, here's an example on removing modules via code for certain pages only: public function PageController_Render_Before($Sender) { $Page = $Sender->Data('PageData'); // For example, you can… (View Post)6 -
Re: JPEG Only Supported
@Bleistivt, thanks for the tip! I'll probably set the second argument to false for the $UploadImage->GenerateTargetName() call. Also, it looks like validating the extension against an array of all… (View Post)1