MyBB Community Forums

Full Version: Groupimages..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Can anyone help me to get my groupimages into center?

[attachment=30596]
What is your board URL?
I don't share my board. I just need to get centered group images.
BUMP!

Help please.
You need to tell us your URL or post your code so that we can take a look at your problem, how do expect me to know what are you talking about
I added picture. http://aikesehuvilised.eu/showthread.php...626#pid626
Group images are not in center.. they are padding left..
Do you mean something like this?

Then someone please correct me but I used something like this.
<div style="float: left;">
<div style="text-align: center;">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
							<span class="smalltext">
								{$post['usertitle']}<br />
								{$post['userstars']}
								{$post['groupimage']}
							</span>
</div>
</div>
Yeah I need to center them like on your picture.

Going to try something.
Find this code in your postbit template

<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
                            <span class="smalltext">
                                {$post['usertitle']}<br />
                                {$post['userstars']}
                                {$post['groupimage']}
                            </span>

And replace it with
<div style="float: left;">
<div style="text-align: center;">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
                            <span class="smalltext">
                                {$post['usertitle']}<br />
                                {$post['userstars']}
                                {$post['groupimage']}
                            </span>
</div>
</div> 
(2013-11-27, 07:44 PM)marcus123 Wrote: [ -> ]Find this code in your postbit template

<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
                            <span class="smalltext">
                                {$post['usertitle']}<br />
                                {$post['userstars']}
                                {$post['groupimage']}
                            </span>

And replace it with
<div style="float: left;">
<div style="text-align: center;">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
                            <span class="smalltext">
                                {$post['usertitle']}<br />
                                {$post['userstars']}
                                {$post['groupimage']}
                            </span>
</div>
</div> 

It didn't helped but I put the img code in postbit_groupimage between <center></center> tags and it's in center but now there is a big space between 2 images.

http://aikesehuvilised.eu/showthread.php...629#pid629
Pages: 1 2