MyBB Community Forums

Full Version: [HELP] Rush theme by iAndrew
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I want to use this theme for my forum but I have some problems.

Image on profile out of frame.
And also "Private Message: Send Einhver a private message." not straight with "Homepage: & Email:"

[Image: vogSVDO.png]

Anyone can help me to solve that?

Thanks Wink
Send me your forum url so i can take a look
(2015-05-10, 10:42 AM)iAndrew Wrote: [ -> ]Send me your forum url so i can take a look

http://community.steampedia.com

[Image: As8fkX3.png]

If I set that option to 100x100 it will show normal.

Thanks Wink
try adding this to the rush.css of your theme... hard refresh (Ctrl+F5) the forum to check changes...

.proav img {
  width: 100%;
}


the PM link misses the css classes and hence misaligned.. can you check the

ACP >> Templates >> Rush Templates >> Member Templates >> member_profile_contact_details template or the member_profile_pm template

and add the css classes to it... class should be changed as class="{$bgcolor}"
(2015-05-10, 01:08 PM)mmadhankumar Wrote: [ -> ]try adding this to the rush.css of your theme... hard refresh (Ctrl+F5) the forum to check changes...







.proav img {
  width: 100%;
}


the PM link misses the css classes and hence misaligned.. can you check the

ACP >> Templates >> Rush Templates >> Member Templates >> member_profile_contact_details template or the member_profile_pm template

and add the css classes to it... class should be changed as class="{$bgcolor}"

First problem was solved, thanks @mmadhankumar
I also add height :
.proav img {
 width: 100%;
 height: auto;
}

And also edit this :
.proav {
 width: 130px;              //make this same as Default Avatar Dimensions
 background-color: #fff;
 border: 1px solid #e9e7e7;
 height: 130px;             //make this same as Default Avatar Dimensions
 -moz-border-radius: 3px;
 -webkit-border-radius: 3px;
 border-radius: 3px;
 -moz-background-clip: padding;
 -webkit-background-clip: padding-box;
 padding: 10px 10px;                         //and change this
}

Second problem not yet solved, here's member_profile_pm template :
<tr>
 <td class="{$bgcolor}"><strong>{$lang->pm}</strong></td>
 <td class="{$bgcolor}"><a href="private.php?action=send&amp;uid={$memprofile['uid']}">{$lang->send_pm}</a></td>
</tr>

Second problem solved but another bug come.
I need to change this from 5 to 10.

[Image: K4TBpJR.png]

This "Private Message" different with other.
Under it also don't have "line" like other.
[Image: x4QiMNg.png]
I change this:
<tr>
	<td class="{$bgcolors['pm']}"><strong>{$lang->pm}</strong></td>
	<td class="{$bgcolors['pm']}"><a href="private.php?action=send&amp;uid={$memprofile['uid']}">{$lang->send_pm}</a></td>
</tr>

With this:
<tr>
	<td class="trow2"><strong>{$lang->pm}</strong></td>
	<td class="trow2"><a href="private.php?action=send&amp;uid={$memprofile['uid']}">{$lang->send_pm}</a></td>
</tr>


Is that okay? If yes then the problem solved.  Big Grin


Another problem.
I set Homepage but another Homepage table showing.

[Image: Ra5zEY6.png]