vrijvlinder
MVPvrijvlinder MVP
Reactions
-
Re: moved MeModule, now text of conversation excerpts is not wrapping
Ok thanks, this is what you need to do to fix that .Excerpt { padding-right: 0; white-space: pre-wrap; margin: 0;} (View Post)5 -
Re: Response box is too dark
Is that the editor you are using? You need to change the font color for the input. Try adding this into the theme custom.css or the editor plugin css file textarea{color:#fff!important;} (View Post)3 -
Re: add text between breadcrumbs and topic list
If you want to add more content anywhere the best way is by making a module. Please try the Widgets plugin as a guide. You can have a module contain anything. Text or images or whatever. Then you can… (View Post)2 -
Re: closetag php
It can have a bad effect. There are times when you do have it . Like when there is html after php for example ?> //last line of php with html after it<div> If there is no html after the last… (View Post)3 -
Re: 2.0.X - Userprofile Image alt="username userpicture" integration
If you want the name of the user to be the ALT use this <?php if (!defined('APPLICATION')) exit();$User = GetValue('User', Gdn::Controller());if (!$User && Gdn::Session()->IsValid()) { … (View Post)4