Thread: ofset bug
View Single Post
  #8  
Old 23rd May 2009, 21:25
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
ok I found your trouble maker
open phpBB3/styles/Prospace/theme/common.css and find
Code:
* {
    /* Reset browsers default margin, padding and font sizes */
    margin: 0;
    padding: 0;
}
and replace with
Code:
* {
    /* Reset browsers default margin, padding and font sizes */
    /*margin: 0;
    padding: 0;*/
}
now find
Code:
body {
    /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
    font-family: Verdana, Helvetica, Arial, sans-serif;
    color: #E7C292;
    background-color: #FFFFFF;
    /*font-size: 62.5%;             This sets the default font size to be equivalent to 10px */
    font-size: 10px;
    margin: 0;
    padding: 12px 0;
}
and replace with
Code:
body {
    /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
    font-family: Verdana, Helvetica, Arial, sans-serif;
    color: #E7C292;
    background-color: #FFFFFF;
    /*font-size: 62.5%;             This sets the default font size to be equivalent to 10px */
    font-size: 10px;
    margin: 0;
    /*padding: 12px 0;*/
}
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote