MyBB Community Forums

Full Version: Align Awrd In Center
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello I want to ask how can I align my OUGC awards in center of profile when a user comment on thread.

Thanks
Moved to Plugin Support.
Thanks

And sorry for opening thread in wrong section.
<div align="center">The variable here</div>

Try that, but replace "The variable here" with the awards variable, it should look something like

{$ougc['awards']}

I hope you understand.
Thanks for the reply buddy but I tried

It still posting the award below author statistics.

Or Below the user name.

Posting between two div author stats and post author will align award in center but the author stats will be then below the award.
Please provide a forum url and test account. I am not exactly sure what the issue is.
techoforum.com


userid- test
pass- test1234
try this... first add a css selector for the award div...

<div class="award">Award Variable</div>


then add this to global.css of your theme...

div.award {
  margin-top: -60px;
  text-align: center;
}

.post .post_author div.author_information {
  width: 80%;
}
thanks tried this but its showing this.

Below is a screenshot.
you didnt add those css codes yet... also put the award div before the closing author_information div...
Pages: 1 2