Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   BT.Manager (phpMyBitTorrent) (http://www.bvlist.com/forumdisplay.php?f=23)
-   -   ofset bug (http://www.bvlist.com/showthread.php?t=2662)

wMan 22nd May 2009 11:28

ofset bug
 
found a bug
it is like this
when i set navbar
PHP Code:

#navlist { 
position:absolute;
top 0px;
width :1200px;
left :0px;
right 30px;
padding 16px 0;
margin-right0px;
font bold 13px sans-serifsans-serif;


like this it is in its place for forum but not for main page
when i set it like this
PHP Code:

#navlist { 
position:absolute;
top : -25px;
width :1200px;
left :0px;
right 30px;
padding 16px 0;
margin-right0px;
font bold 13px sans-serifsans-serif;


it's in same place where it was for forum (that is place where it shoud be)
so hove can i set navbar in same place for both of them if there is 25px diference ??

joeroberts 23rd May 2009 05:48

try
HTML Code:

#navlist {
position:absolute;
top : 0px!important;
width :1200px;
left :0px;
right : 30px;
padding : 16px 0;
margin-right: 0px;
font : bold 13px sans-serif, sans-serif;
}

it is good to set a style important if you get conflix

wMan 23rd May 2009 17:03

nope no change at all

joeroberts 23rd May 2009 17:09

You need to be looking at your forum styles and not tracker

wMan 23rd May 2009 17:17

only way to do the same thing in forum without this ofset right is to remove
all body lines what makes forum look like crap
then better not use that integration at all

joeroberts 23rd May 2009 17:32

no the is a style conflick you have to find if I had access I could fix for you I well look at your source codes see what I can find

wMan 23rd May 2009 17:38

i know where is the problem IN MAIN INDEX because -25px is not 0 what this height realy shoud be but in forum 0=0 and height is right

joeroberts 23rd May 2009 21:25

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;*/
}


wMan 23rd May 2009 21:44

fixed :ok:


All times are GMT +2. The time now is 17:01.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.