Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   How can i remove this line (http://www.bvlist.com/showthread.php?t=8935)

Leechbg 28th February 2013 00:58

How can i remove this line
 
How can i remove this line and from which file shoud i do that ?
Pls help me.

http://s7.postimage.org/3kznhnjm3/here.jpg

joeroberts 28th February 2013 01:00

HTML Code:

<table border="0">

Leechbg 28th February 2013 01:04

In which file need to edit this thing ?

joeroberts 28th February 2013 01:09

I'm sorry my mind reading skills have failed me so I can not read your mine so that
I don't know what censor source what version what theme or anything about your code.

Leechbg 28th February 2013 01:59

its TBDEV 08 moded

DND 28th February 2013 09:09

use firebug and see from where is that line
then in css, or in bittorrent.php table border="0" or in css border: hidden
u just need to find the line that makes that happen

Leechbg 28th February 2013 09:58

1 Attachment(s)
In that browse.php when we edit the border only the inline box is moving the outline is not removing,where is our mistake?

http://s15.postimage.org/5ol1yu9t7/Clipboard01.jpg

DND 28th February 2013 11:10

it must be the outer or mainouter from css :)
that line is not only for the browse page.
it is for all pages !

Leechbg 1st March 2013 18:23

Quote:

Originally Posted by DeNeDe (Post 39751)
it must be the outer or mainouter from css :)
that line is not only for the browse page.
it is for all pages !

No this line is only for the browse... and I still can't found and delete. I everywhere but i don't found.Please help .tell me which files to give them to seek :sos:

daffy 1st March 2013 18:26

Quote:

Originally Posted by Leechbg (Post 39757)
No this line is only for the browse... and I still can't found and delete. I everywhere but i don't found.Please help .tell me which files to give them to seek :sos:

download and install firebug, its a firefox plugin, it allows you to right click on parts of site and view code. you can then find the table and the css line it is being pulled from.

will help you ALOT and you can also learn alot about code you work with
https://getfirebug.com

post your bittorrent.php

Leechbg 1st March 2013 19:09

1 Attachment(s)
Quote:

Originally Posted by daffy (Post 39758)
download and install firebug, its a firefox plugin, it allows you to right click on parts of site and view code. you can then find the table and the css line it is being pulled from.

will help you ALOT and you can also learn alot about code you work with
https://getfirebug.com

post your bittorrent.php

I download this plagin for mozila.But i still found ...maybe I'm an idiot :sad::sad:

This is a my bittorent.php please help to delete this line :war:

Bump: Hi :) I finally managed to remove the line ...

In this in browse.php >>


PHP Code:

<?    
begin_frame
("" .RECOM"");
$ress sql_query("SELECT id, recommended, category, seeders, leechers, size, name, poster, times_completed from torrents WHERE recommended = 'yes' ORDER BY added DESC LIMIT 11") or sqlerr(__FILE____LINE__);
$num mysql_num_rows($ress);

if (
$num 0) {
print(
"<center><table border=1 cellspacing=0  cellpadding=1 width=75%><tr></center>");

print(
"<td align=center><font><b>Тип</font></b></td>");
//print("<td align=center><font size=+1><b>Rank</font></b></td>");
print("<td align=center><font><b>Название</font></b></td>");
print(
"<td align=center><font><b>Размер</b></font></td>");
print(
"<td align=center><font><b>Свалено</b></font></td>");
print(
"<td align=center><font><b>Сийдъри</b></font></td>");
print(
"<td align=center><font><b>Лийчъри</b></font></td></tr>");

for (
$i 0$i $num; ++$i)
{
while (
$row mysql_fetch_assoc($ress)) {


//////// Retrieve Category Image //////////
$cros sql_query("SELECT name, image FROM categories WHERE id=$row[category]");
if (
mysql_num_rows($cros) == 1)
{
$corr mysql_fetch_assoc($cros);
$cat_img "<img src=$BASEURL/pic/" $corr[image] . " border=0 alt='$corr[name]'>";
}
/////// End Category Image //////////////

//Rank Start
$i = ++$i;
//Rank End

//print("<tr><td>$cat_img</td>");
print("<td width=40 align=left>$cat_img</td>"); //category images
//print("<td align=center>$i</td>"); //rank

$poster $row['poster'];

print(
"<td width=60% align=left><a href=details.php?id=$row[id] onmouseover=\"return overlib('<table width=100%><img src=$poster width=120 height=170></table>',  WIDTH, 120, DELAY, 170);\" onmouseout=\"return nd();\";><b>$row[name]</b></a> $bgsubs $bgaudio");

print(
"<td align=center>" .mksize($row['size'])."</td>"); //size
print("<td align=center>" .number_format($row['times_completed'])."</td>"); //snatches
print("<td align=center><font color=red>" .number_format($row['seeders'])."</font></td>"); //seeders
print("<td align=center>" .number_format($row['leechers'])."</td></tr>\n"); //leechers
}
}
}
print(
"</tr></table>");

    

end_frame();
?>

I remove begin_frame and end_frame(); ... and here is a results >>>

http://i.imgur.com/k4ITgt6.jpg


All times are GMT +2. The time now is 21:50.

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