Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

column side-by-side

Asked Modified Viewed 2,614 times
K
Kvido
K
Kvido 10
Linux-Ubuntu 09.03.60, Linux/Ubuntu, PHP5, HTML5, Mozilla-Firefox 3.6.3, Opera 10.51, IE 8.0.6
https://www.nekecamweb.cz
  • Senior Member, joined since
  • Contributed 524 posts on the community forums.
  • Started 108 threads in the forums
  • Started this discussions
asked
Senior Member

Hi Everyone!

How create double column side-by-side?

Thankee!
0 replies

10 posts

S
Sveinungs
S
  • Veteran Member, joined since
  • Contributed 935 posts on the community forums.
  • Started 3 threads in the forums
answered
Veteran Member

Do you mean like putting the two side panels side by side, and then the center column to the right/left of those? Or something else?

Btw, I sent you a PM.
0 replies
K
Kvido
K
Kvido 10
Linux-Ubuntu 09.03.60, Linux/Ubuntu, PHP5, HTML5, Mozilla-Firefox 3.6.3, Opera 10.51, IE 8.0.6
https://www.nekecamweb.cz
  • Senior Member, joined since
  • Contributed 524 posts on the community forums.
  • Started 108 threads in the forums
  • Started this discussions
answered
Senior Member

Thanks! Regards!!

In agreement with image.
0 replies
K
Kvido
K
Kvido 10
Linux-Ubuntu 09.03.60, Linux/Ubuntu, PHP5, HTML5, Mozilla-Firefox 3.6.3, Opera 10.51, IE 8.0.6
https://www.nekecamweb.cz
  • Senior Member, joined since
  • Contributed 524 posts on the community forums.
  • Started 108 threads in the forums
  • Started this discussions
answered
Senior Member

K
Kvido
K
Kvido 10
Linux-Ubuntu 09.03.60, Linux/Ubuntu, PHP5, HTML5, Mozilla-Firefox 3.6.3, Opera 10.51, IE 8.0.6
https://www.nekecamweb.cz
  • Senior Member, joined since
  • Contributed 524 posts on the community forums.
  • Started 108 threads in the forums
  • Started this discussions
answered
Senior Member

Myself indeed MOD in double columens side by side is functionless
0 replies
N
Nemke
N
Nemke 10
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 3 threads in the forums
answered
Junior Member

If you want to move right side to the left, then you will have too change alot of PHP Fusion file and from the bottom of file cut the line: require_once BASEDIR."side_right.php"; and move it to the top below require_once BASEDIR."side_left.php"; so your code should look like this:

require_once BASEDIR."side_left.php";
require_once BASEDIR."side_right.php";


I didn't try it, but it should work...
0 replies
J
jantom
J
jantom 10
...because the Prophet is only one...
  • Junior Member, joined since
  • Contributed 44 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

It's one way, which can be choosen. Another can be faster and smarter ;)
Edit side_lef.php and side_right.php. Insert this code after line 31 (in side_lef.php, in side_right.php delete it - lines 33-49)
$p_res = dbquery("SELECT * FROM ".$db_prefix."panels WHERE panel_side='4' AND panel_status='1' ORDER BY panel_order");
if (dbrows($p_res) != 0) {
   $pc = 0;
   while ($p_data = dbarray($p_res)) {
      if (checkgroup($p_data['panel_access'])) {
         if ($pc == 0) echo "<td width='$theme_width_r' valign='top' class='side-border-right'>\n";
         if ($p_data['panel_type'] == "file") {
            $panel_name = $p_data['panel_filename'];
            include INFUSIONS.$panel_name."/".$panel_name.".php";
         } else {
            eval(stripslashes($p_data['panel_content']));
         }
         $pc++;
      }
   }
   if ($pc > 0) echo "</td>\n";
}

Save files.
Edited by jantom on 16-12-2007 01:33,
0 replies
K
Kvido
K
Kvido 10
Linux-Ubuntu 09.03.60, Linux/Ubuntu, PHP5, HTML5, Mozilla-Firefox 3.6.3, Opera 10.51, IE 8.0.6
https://www.nekecamweb.cz
  • Senior Member, joined since
  • Contributed 524 posts on the community forums.
  • Started 108 threads in the forums
  • Started this discussions
answered
Senior Member

Very much thanks!

I haven't the foggiest. OK :)
0 replies
M
Matonor
M
Impossible things are there to be made possible
  • Veteran Member, joined since
  • Contributed 1,022 posts on the community forums.
  • Started 3 threads in the forums
answered
Veteran Member

not in v6, at least not valid.
0 replies
M
Matonor
M
Impossible things are there to be made possible
  • Veteran Member, joined since
  • Contributed 1,022 posts on the community forums.
  • Started 3 threads in the forums
answered
Veteran Member

The Html standard does not permit you to place table cells absolutely or floating, but maybe there is some way to force this behaviour via javascript or browser bugs, which I would call invalid.
In PHPFusion 7 you can use divs that can be placed absolutely or floating and you can also override the whole column-behaviour from within the theme.
0 replies
M
Matonor
M
Impossible things are there to be made possible
  • Veteran Member, joined since
  • Contributed 1,022 posts on the community forums.
  • Started 3 threads in the forums
answered
Veteran Member

"Note. Positioning and floating of table cells can cause them not to be table cells anymore, according to the rules in section 9.7. "
So positioning tablecells is something like a handled exception. I did not expect this as a grid-structure where one building grid-cell is freely positioned does not seem logic, but due to this exception it is possible and thus your initial idea of positioning the columns via css should work.
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 10 posts
  • Votes 0 votes
  • Topic users 5 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet