Quote Originally Posted by mydanilo View Post
I need to have a text area on the main page below the category listing. I have previously pulled some EZ page text done with inserting this code in the tpl_main_page.php:
PHP Code:
<!--bof- SEO Ezpage text -->
<div id="seo_content">
<?php
if ($this_is_home_page) {
    
$page_query $db->Execute("SELECT pages_html_text FROM zen_ezpages WHERE pages_title='SEO'");
    
$seo_text $page_query->fields['pages_html_text'];
    echo 
$seo_text;
    } 
?>  
</div>
<!--eof- SEO Ezpage text -->
This worked great on the non responsive template I used before. Now with this responsive one it breaks the code. Can anybody tell me why?
If you post a link to your site I can take a look. My guess is that you have mismatched or missing tags.

Thanks,

Anne