Resizing main table

C

Chaoticx

Guest
Hey I've been looking in the styles_screen css forever, and changed the .main_table width to 50%, but it still stretches all the way out, like it's a set width. How can I change this to fit inside where I want it to fit inside?
 
D

Debbie S

Guest
Chaoticx

You can further customize the results table by modifying the HTML code within the function build_results_table in business_logic.php.

Debbie
(Latest version of DaDaBIK when this message was posted: 3.2 Beta)
 

daman619

New member
i'm trying to do this as well. i went to the fucntion build_results_table but i have no clue what to modify. I want the main table to be 800 in width.
 

agustaf4

New member
Can u please tell me were in the css and which one u managed to resize the table to 800 width and centered .. thanks
 

samarita

New member
Hi,

How did you get the whole table centered? I have been using this software for a long time now, but I have no time to study the coding. If you have it already, can you please send it to me?

Appreciate it.
 

dpdj

New member
Hi Chaoticx

Could you please post how you solved your problem? I'm sure others could learn from that.

Thks

 

Misk001

New member
I also tried it and it was a simple solution.

In order to do it you may add in the index.php

after the:
include ("./include/header.php");
The line:
echo "<div align=\"center\">";

and just before the line:
include ("./include/footer.php");
the line:
echo "</div>";
 
Top