1
Hi, I apologise if this is the wrong section to post this.
I'm using the Magazine module, and the article template is showing the articles in a 520pixel width.
see:
http://www.area10.info/modules/magazine/article.php?articleid=4I have looked all over the templates and css for the Magazine module but can't figure it out.
Viewing the source of the above link it appears it is the comments table that is doing it?
<div style="text-align: center; padding: 3px;margin:3px;" class="tbl520"> div>
<div class="tbl520">
div>
My edited mag_article.html template is
<{include file="db:mag_article_header.html"}>
<br />
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td> <p><span class="titlemain"><{$article.titlemain}>span> <{$article.adminlink}>
<br />
<br />
<{if $article.subtitle !=''}> <span class="subtitle"><{$article.subtitle}>span>
<br />
<br />
<{/if}> <span> <{if $article.is_include == 1}> <{include_php file="file:$my_template"}>
<{else}> <{$article.maintext}> <{/if}> <br />
<{$pagenav}>
span>p>td>tr>
table>
<br />
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="info_text_02"><{$article.menu}>td>
<td class="info_text_02"><{$lang_copyright}>td>
tr>
table>
and
my edited mag_comments.html template is
<div style="text-align: center; padding: 3px;margin:3px;"> <{$commentsnav}> <{$lang_notice}> div>
<div>
<{if $comment_mode == "flat"}>
<{include file="db:system_comments_flat.html"}>
<{elseif $comment_mode == "thread"}>
<{include file="db:system_comments_thread.html"}>
<{elseif $comment_mode == "nest"}>
<{include file="db:system_comments_nest.html"}>
<{/if}>
div>
I do not see where class="tbl520" is kicking in..