XF 1.2 Embed local php page into a page?

Try removing the responsive .css file and see what happens. Also you are loading the jquery library twice v1.7 and v1.9; that might be causing issues.

It looks like the subsequent file is overwriting the <body> contents.
 
Last edited:
tried removing the responsive.css no change! sorry im still very new to xenforo.. so im not sure what jquery is? sorry if thats a total noobie question!
When you look at the source of your web page you can see the following.

HTML:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
        <script src="//www.cmnet.co.uk/library/ban/js/bootstrap.min.js"></script>
        <script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script>
        <script src="//www.cmnet.co.uk/library/ban/js/heartcode-canvasloader-min.js"></script>
        <script src="//www.cmnet.co.uk/library/ban/js/jquery.countdown.min.js"></script>
        <script src="//www.cmnet.co.uk/library/ban/js/jquery.tablesorter.min.js"></script>
        <script src="//www.cmnet.co.uk/library/ban/js/jquery.tablesorter.widgets.min.js"></script>
        <script src="//www.cmnet.co.uk/library/ban/js/jquery.tablesorter.pager.min.js"></script>
 
tried removing the responsive.css no change! sorry im still very new to xenforo.. so im not sure what jquery is? sorry if thats a total noobie question!
@CLMontague
Ok, so I am guessing you want the page to look like this.

ban_check_002.webp

If you turn off javascript you will see that it looks like that.

In the javascript there is a line of code that is re-loading the page. So if you watch the address in the browser address bar you can see when it happens. I was thinking you were intentionally doing it. I guess not.

Ask the frostcast folks about the line of code that automatically re-loads the page, and you can just comment it out.
 
Top Bottom