Boostrap 3

legendz

AcemanWolf
Hello,

I'm not good with HTML. Boostrap member stats page, I was wondering how to I make this align. The VOTE, Twitter, Google+1, and Facebook all in 1 line. You can visit www.megawebsites.org and see the stats page.

Thanks.

error.png
 

Basti

Administrator
Staff member
Add this to your user.css
Code:
#plugin_facebook_like {
    display: inline-block;
    vertical-align: top;
}
Normally the vertical-align: top; isnt needed, at least i never had the need. But in this case its needed to push the box in line with the other 2
 

Basti

Administrator
Staff member
Code:
<img src="" alt="LegendzCraft Web Directory"/>
is wht i see when i inspect source. So i suspect your wrote the html tag wrong maybe? its {$banner_url}

else you need to tell us how your actual html looks like
 

legendz

AcemanWolf
Got it. Found the reason why is won't show. They need premium membership.

<div class="lightbg1">
<a href="{$url}" onclick="out(this,'{$username}');" rel="nofollow"><img src="{$premium_banner_url}" alt="{$title}"/></a>
<h1>{$title}</h1>
{$stats_under_title}
</div>
The default code is {$premium_banner_url}. I replaced it like you said with {$banner_url} and it works. I don't need premium on this site. Thanks again :)
 

Basti

Administrator
Staff member
Ah you have an old bootstrap file maybe. I remember now this issue. Either you got an old file or we forgot to update the bug :rolleyes:
 

Basti

Administrator
Staff member
Na if its 3 days ago we havent updated it back then. That bug report is 100% older than 3 days
 
Top