So, I'm setting up a new site using xBootstrap
I tried various modules for the main page, and assigned them as the start module in the preferences.
Unfortunately, assigning a start module gets rid of the slider and the box under it.
I wanted a smooth look without any headers, breadcrumb, etc
After looking at the code in xBootstrap
theme.html calls to tpl/content-zone.html and tpl/content-zone.html calls to tpl/content.html
So, as a little bit of an unorthodox fix, I created the info I wanted in html format and pasted it into tpl/content.html like so
<HTML>
<BR><BR>
<script type="text/javascript" src="https://hosted.muses.org/mrp.js">script>
<script type="text/javascript">
MRP.insert({
'url':'http://master.shoutcast.com:8000/722504/;',
'codec':'mp3',
'volume':50,
'autoplay':true,
'buffering':5,
'title':'Radio Free Ukraine',
'welcome':'WELCOME TO...',
'bgcolor':'#FFFFFF',
'skin':'blueberry',
'width':338,
'height':102
});
script>
<BR><BR>
<h1><b>Proud to be Ukrainian…b>h1><BR>
<BR>
Radio Free Ukraine broadcasts to to the world from Ukraine, focusing on news, a familiar brand of “hits and memories”, friendly presenters, Ukrainian news and most importantly; community involvement.<BR>
<BR>
<h1><b>We are Radio Free Ukraineb>h1><BR>
<BR>
We are Radio Free Ukraine and our mission is to tell Ukrainian residents about what’s happening in their towns and surrounding villages. How?<BR>
<BR>
As your Ukrainian community radio we keep you informed week by week about the events in and around your town with our ‘Take Notice’ feature, and local employment opportunities in our daily ‘Job Spot’ programme. The ‘Over to You’ show demonstrates what local charities & clubs are achieving.<BR>
<BR>
Drive Time keeps you up to date with the latest news, weather and sports and gets you home safely; whilst our Saturday Sports team inform you how our local & national players are doing in all kinds of sports. Spotlight, our specialist arts and music programme, keeps you updated with all the local gigs, introduces new musicians, plays and drama productions. <BR>
<BR>
We do all this while we bring to you the best of music from the 60’s through to the present day – 24 hours a day – and all achieved by dedicated volunteers.<BR>
<BR>
HTML>
<{if $xoops_contents}>
<{$xoops_contents}>
<{/if}>
it looks great. Lines up nicely against the main menu.
Here's the problem...
It appears twice. It also appears at the end of the main menu and is paginated to the left.
I searched the xBootstrap files and there is only one instance of tpl/content-zone.html and tpl/content.html being called, and that's from theme.html as I explained above.
And deleting
<{if $xoops_contents}>
<{$xoops_contents}>
<{/if}>
doesn't make any difference. The content is still twice
So, can someone tell me why it's appearing twice and how I can stop it?