Home Uncategorized Moving profile left in phpbb3 prosilver theme

Moving profile left in phpbb3 prosilver theme

0
Moving profile left in phpbb3 prosilver theme
Moving profile left in phpbb3 prosilver theme

Although different methods have been described on this subject, the easiest method I found is to install a module published free by canver software (if I said module, it is a few lines and you paste it right away), open the following (I left a special space ) let’s find the tag in

styles/prosilver/template/overall_header.html

and paste the following code just before

After transferring the files to the host, enter the Administration panel: Click the button next to “Clear cache” to clear the cache.

Another method:

# —–[ OPEN ]—– styles/prosilver/theme/content.css # —–[ FIND ]—– .postbody { padding: 0; line-height: 1.48em; color: #333333; width: 76%; float: left; clear: both; } # —–[ REPLACE WITH THIS ]—– .postbody { padding: 0; line-height: 1.48em; color: #333333; width: 76%; float: right; clear: both; } # —–[ FIND ]—– .postprofile { /* Also see tweaks.css */ margin: 5px 0 10px 0; min-height: 80px; color: #666666; border-left: 1px solid #FFFFFF; width: 22%; float: right; display: inline; } # —–[ REPLACE WITH THIS ]—– .postprofile { /* Also see tweaks.css */ margin: 5px 0 10px 0; min-height: 80px; color: #666666; border-right: 1px solid #FFFFFF; width: 22%; float: left; display: inline; } # —–[ FIND ]—– .online { background-image: none; background-position: 100% 0; background-repeat: no-repeat; } # —–[ REPLACE WITH ]—– .online { background-image: none; background-position: 0 0; background-repeat: no-repeat; }

Admin Panel > Styles > Themes.
Click “edit” on the theme you are using
then apply these codes and click OK…after editing, clear the stashes from the administration. You may also need to clear Firefox’s cookies, if the profile information is on the left and the icon_user_online.gif comes over the profile information, it is recommended not to change the image, but to make 17.8% 0 instead of 100% 0 in the code above

Velociraptor

LEAVE A REPLY

Please enter your comment!
Please enter your name here