WebsiteBaker Community Forum (upd)

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: applepie on December 08, 2008, 07:13:49 PM

Title: Contents and image not showing on site
Post by: applepie on December 08, 2008, 07:13:49 PM
Hi, I am not sure what I have done wrong here. None of the contents on this section of my template is showing on the site. Please help.

index.php file____________________

<div id="news">
   <?php display_news_items(0, 8, 50, 2,
  'The latest news', 'show full news text', 'uups, no news available',
  true, '<a><img>', false, ' (h:i, d.m.Y)'); ?>
</div>
<?php if(SHOW_SEARCH) { /* Only show search box if search is enabled */ ?>
           <br />
            Search: <br />
           <form name="search" action="<?php echo WB_URL; ?>/search/index.php" method="get">
               <input type="text" name="string" style="width: 100%;" />
               <input type="submit" name="submit" value="<?php echo $TEXT['SEARCH']; ?>" style="width: 100%;" />
           </form>
       <?php } ?>    

<div id="footer">

<div id="bottom-body">

<div id="footer-text">
<?php page_footer(); ?>
</div>
<div id="icons">
<a href=""><img src="<?php echo TEMPLATE_DIR; ?>/images/icon1.jpg" alt="" /></a>
<a href=""><img src="<?php echo TEMPLATE_DIR; ?>/images/icon2.jpg" alt="" /></a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>




CSS for the above_________________

#news {
   position: absolute;
   top: 320px;
   left: 95px;
   z-index: 5;
   width: 165px;
   height: 225px;
}

#footer {
   background-image: url(img/background.jpg) repeat-x;
   width: 100%;
   height: 155px;
   
}

#footer-text {
   position: absolute;
   left: 135px;
   top: 45px;    
}

#bottom-body {
   background-image: url(img/body-bottom.jpg) no-repeat;
   height: 155px;
   width: 911px;
   position: relative;    
}
Title: Re: Contents and image not showing on site
Post by: applepie on December 09, 2008, 01:05:58 AM
Nobody can help? Where are all the CSS enthusiast?? The codes is only part of my index.php file. The rest of the template is fine except the section mentioned.
Title: Re: Contents and image not showing on site
Post by: BerndJM on December 09, 2008, 02:30:27 AM
Hi,

any error-message if you turn the error-level on in advanced settings?

Regards Bernd
Title: Re: Contents and image not showing on site
Post by: applepie on December 09, 2008, 03:57:57 PM
Quote from: BerndJM on December 09, 2008, 02:30:27 AM
any error-message if you turn the error-level on in advanced settings?

Regards Bernd

Do you mean 'PHP Error Reporting Level:' in the settings? There are a few options. Which one should i choose? Where do I view the error-message?
Title: Re: Contents and image not showing on site
Post by: BerndJM on December 09, 2008, 04:21:12 PM
Yes,
E_ALL would be a gut choice.
The errors (if there are) will be shown on your pages.

Regards Bernd
Title: Re: Contents and image not showing on site
Post by: applepie on December 09, 2008, 04:30:47 PM
Quote from: BerndJM on December 09, 2008, 04:21:12 PM
Yes,
E_ALL would be a gut choice.
The errors (if there are) will be shown on your pages.

Which page? On the site? I dont see any errors. If not the site, where else can I look for it?
Title: Re: Contents and image not showing on site
Post by: vyni on December 09, 2008, 05:23:14 PM
Hi,
short-time-offer:
You mail me the complete template and I´ll have a look on it.

Maybe I find something....
Title: Re: Contents and image not showing on site
Post by: applepie on December 09, 2008, 05:29:52 PM
Quote from: vyni on December 09, 2008, 05:23:14 PM
Hi,
short-time-offer:
You mail me the complete template and I´ll have a look on it.

Thanks. Where do I mail it to?
Title: Re: Contents and image not showing on site
Post by: applepie on December 10, 2008, 12:31:58 AM
Thanks. I managed to get it working now. I am not sure if it has anythign to do with the different WB version. It works ok on older version. I had to change some codes on my CSS file and now I can see the bottom image. My only problem is that the image stays on the right of the page instead of left. How do I get it to stay on the left. I tried flush left but it didnt work. Any idea, anyone?

Cheers.