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?

Bootstrap 3 or 4

Asked Modified Viewed 863 times
G
Grimloch
G
Energy can neither be created nor destroyed; only transformed !
  • Senior Member, joined since
  • Contributed 722 posts on the community forums.
  • Started 141 threads in the forums
  • Started this discussions
  • Answered 2 questions
asked
Senior Member

Is it possible to run bootstrap 3 or 4 in Fusion 8.00.80? If so how much code would have to be changed/added? The reason I'm asking is that my Bootstrap Tabs infusion which I wrote for Fusion9 won't work properly.
0 replies

6 posts

G
Grimloch
G
Energy can neither be created nor destroyed; only transformed !
  • Senior Member, joined since
  • Contributed 722 posts on the community forums.
  • Started 141 threads in the forums
  • Started this discussions
  • Answered 2 questions
answered
Senior Member

OK guys, I need some help here. I am attempting to convert my Gillette theme to full bootstrap. I have the basic code in place and it works however; the columns will not stack vertically. Here is the code for the main stuff:
//Content
echo "<div class='container-flex'>n";
 echo "<div class='row'>n";
 echo "<div class='col-xs-12 col-sm-12 col-md-12 col-lg-12'>".AU_CENTER."</div>n";
 echo "</div>n";

 if (LEFT) {
 echo "<div class='row'>n";
 echo "<div class='col-xs-2 col-sm-2 col-md-2 col-lg-2'>".LEFT."</div>n";
 }
 echo "<div class='col-xs-8 col-sm-8 col-md-8 col-lg-8'>".U_CENTER.CONTENT.L_CENTER."</div>";
 if (RIGHT) {
 echo "<div class='col-xs-2 col-sm-2 col-md-2 col-lg-2'>".RIGHT."</div>n";
 }
 echo "</div>n";
 echo "<div class='row'>n";
 echo "<div class='col-xs-12 col-sm-12 col-md-12 col-lg-12'>".BL_CENTER."</div>n";
 echo "</div>n";
echo "</div>n";

And here is the site to see it. OHS1962 Dot Org
0 replies
D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

You have the same amount of columns set for each device.

Example from one of my sites:

echo AU_CENTER ? "<div class='au-content'>".AU_CENTER."</div>n" : '';
echo "<div class='row'>n";
echo "<div class='col-xs-12 col-sm-2 col-md-2 col-lg-2 leftbar'>n";
echo LEFT.RIGHT;
echo "</div>n";
echo "<div class='col-xs-12 col-sm-10 col-md-10 col-lg-10 main-content'>n";
echo U_CENTER.CONTENT.L_CENTER;
echo "</div>n";
//echo "<div class='col-xs-12 col-sm-2 col-md-2 col-lg-2 rightbar'>n";
//echo RIGHT;
//echo "</div>n";
echo BL_CENTER ? "<div class='bl-content'>".BL_CENTER."</div>n" : '';
echo "</div>n";
1 reply
D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

Nothing new here.

Check this one for more examples:

https://github.com/douweyntema/PHP-Fu...PHP-Fusion

Good old V7.03
1 reply
D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

I use Firefox, the goto menu Tools -->Browser tools -->Responsive Design Mode
0 replies
A
afoster
A
  • Senior Member, joined since
  • Contributed 725 posts on the community forums.
  • Started 128 threads in the forums
answered
Senior Member

douwe_yntema,

I downloaded your files from github, got it installed on a local server (my laptop) using PDO and the screen shot shows what my screen looks like when I go to the site. Did I miss a step? The local server is running php version 7.4.27
afoster attached the following image:
Image not found
0 replies
D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

Sorry not use pdo
0 replies

Labels

Statistics

  • Views 0 views
  • Posts 6 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

A
A
  • Senior Member, joined since
  • Contributed 725 posts on the community forums.
  • Started 128 threads in the forums
G
G
Energy can neither be created nor destroyed; only transformed !
  • Senior Member, joined since
  • Contributed 722 posts on the community forums.
  • Started 141 threads in the forums
  • Started this discussions
  • Answered 2 questions
D
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet