First time here? Check out the FAQ!
1

Can we force the karma to show on the line after the name?
 

It looks like if your karma is over 1000, and you've got lots of badges, the karma appears beside the username in your answers. Just adding a
before the karma tag fixes this. I'm adding it to my server, and my git fork.

Edit: Ah, sorry, I see... it's the website that's the problem... it looks like an improper if statement in askbot/skins/default/templates/macros.html:

{% if not user.website %}<br/>{% endif %}

this seems useless, since the website comes below anyway... just leaving the <br/> works fine.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
NoahY's avatar
303
NoahY
updated 13 years ago, asked 13 years ago

Comments

see more comments

1 Answer

0

So, the answer is to change the file askbot/skins/default/templates/macros.html:

{% if not user.website %}<br/>{% endif %}

to simply:

<br/>

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
NoahY's avatar
303
NoahY
answered 13 years ago
link

Comments

Still can't accept my own answer :P
NoahY's avatar NoahY (13 years ago)
Yay... accepting own answer works now.
NoahY's avatar NoahY (13 years ago)
see more comments