MyBB Community Forums

Full Version: Issue with Rush theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello there,

I recently applied the Rush theme to mybb site.

However, it's not working as expected - when you display a post, the star rating is missing - http://prntscr.com/5o35c8

Also, the header of the site is meant to look like this http://prntscr.com/5o37cv but it looks like this http://prntscr.com/5o37lq

How can I resolve this error? P.S Link to the site is http://fixingcomputer.x10.bz
star rating?? do you mean the user stars below the user names... if yes, goto ACP >> Templates >> Your Theme's Templates >> Post Bit Templates >> postbit and postbit_classic template

add {$post['userstars']} just above {$post['groupimage']}


the other issue seems like a width issue.. you can set the desired width by editing the global.css... find #mbox and alter its width as per need.. also you can add width to the body if needed....

body {
width: 90%;
margin: auto auto; 
}
Thank you