php - I can't make a modal for my site -
i've been trying make modal appear few weeks not work sadly. i've tried bootstrap, simplest way find out there using quick google search bootstrap modals affect css classes , how entire webpage styled.
i'll paste entire index code here reference. it'll nice if here can me issue.
<?php session_start(); ?> <html> <head> <!--chat name --> <?php if(isset($_session["steamname"])){ $user = $_session["steamname"]; } else { $user = ""; } ?> <title>csgorised - coinflip</title> <link href="css/style.css" type="text/css" rel="stylesheet"> <link href='http://fonts.googleapis.com/css? family=open+sans:400,300,600,700,800' rel='stylesheet' type='text/css'> <script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <script src="chat.js"></script> <link href="https://fonts.googleapis.com/css?family=passion+one" rel="stylesheet"> <script src="chatposter.php"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font- awesome.min.css"> <script src="getmessages.php"></script> <script src="openid/openid.php"></script> <link href="https://fonts.googleapis.com/css?family=fjalla+one" rel="stylesheet"> <script src="creategame.js"></script> </head> <body> <div id="displaybar"> </div> <style> .session-steam-id { position: fixed; top: 158px; left: 87px; width: 165px; padding: 0; border: none; background: none; font-size:30px; font-family: 'fjalla one', sans-serif; color: #b107b7; text-decoration: none } .steam-pic { border-radius: 50%; position: fixed; top: 150px; left: 28px; height: 50px; width: 50px; align-content: center; } </style> <div id="rectangle"></div> <div id="toolbar"> <?php if(isset($_session["steamname"])) //if steamname not equals 0 { echo '<a class="button-logout" href="steamauth/logout.php">log out</a>'; } else { echo '<a class="button-login" href="steamauth/login_steam.php">log in</a>'; } ?> </div> <?php $steamphoto = $_session["profileimg"]; ?> <div id="top6"></div> <div id="top1"></div> <div id="toolbar2"> <?php if(isset($_session["steamname"])) //if steamname not equals 0 { echo "<img class=\"steam-pic\" src='$steamphoto'>"; echo "<div class=\"session-steam-id\">$user</div>"; } else { ''; } ?> </div> <h1>csgorised</h1> <!--the side buttons--> <div> <a class="button-support" href="etc/support.php">support</a> <a class="button-faq" href="etc/faq.php">faq</a> <a class="button-provably-fair" href="etc/provablyfair.php">provably fair</a> <a class="button-about-us" href="etc/aboutus.php">about us</a> <a class="button-terms-and-co" href="etc/tandc.php">terms , conditions</a> <a class="button-entertainment" href="etc/entertainment.php">entertainment</a> </div> <!--end of side buttons--> <div style="text-align: center"><a href="https://youtube.com/garlicyvideos"target="_blank"><img class="img- youtube" src=https://developers.google.com/youtube/images/youtube-icon- full_color.png alt="garlicvideos's youtube" height="42" breadth="42"/></a> </div> <div style="text-align: center"><a href="https://www.instagram.com/csgorised"target="_blank"><img class="img- instagram" src=http://www.stickpng.com/assets/images/580b57fcd9996e24bc43c521.png alt="our official instagram!" height="42" breadth="42"/></a></div> <div class='chatcontainer' style="position: fixed;"> <div class='chatmessages'></div> <div class='chatbottom'> <form action='#' onsubmit='return false;' id='chatform'> <input type='hidden' id='name' value='<?php echo $user ?>' /> <input type='text' name='text' id='text' value='' placeholder='say ' /> <input type='submit' name='<i>submit</i>' value='say' /> </form> </div> </div> </body> </html>
Comments
Post a Comment