MyBB Community Forums

Full Version: i have problem with themes Blazered
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Everyone im new here i liked themes Blazered but
i want delete Latest News from my forum at all

[Image: yakamar.com-3fed27cf1c.png]

i want my forum to be like this

[Image: yakamar.com-f5cb0340f8.png]

and im sorry for my english Big Grin
Thanks!
can we have your forum url
of cours bro cyberbugs.org Big Grin
you can try adding below code in the global.css (at the bottom , advanced edit mode) of the theme

.sidebar {display: none!important;}
.buttons {display: none!important;}
.forums {width: 100%!important;} 
thanks, but i don't get any table have name .sidebar and .forums only .buttons

i find on
Edit Stylesheet: Simple Mode
Edit Stylesheet: Advanced Mode
i get just .buttons and i change it but nothing is changed
^ suggestion is not to change anything but to add the given code at the bottom of global.css (Edit Stylesheet: Advanced Mode)
after saving the stylesheet, hard refresh (CTRL + F5) your browser on the index page to check
You could always get support at the theme authors site aswell Wink. (Me being the theme author lol)

Anyways to solve your problem -

Go to themes & templates > templates > blazered templates > index templates > index.

Then delete everything and replace it with the following -

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
    lang.no_new_posts = "{$lang->no_new_posts}";
    lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>

</head>
<body>
{$header}
{$forums}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="6">
<div><strong>Forum Icon Legend</strong></div>
</td>
</tr>
<tr>
		<td class="trow1" align="center" valign="middle"><img src="{$theme['imgdir']}/on.png" alt="{$lang->new_posts}" title="{$lang->new_posts}"/></td>

		<td class="trow1" align="center" valign="middle"> <span class="smalltext">{$lang->new_posts}</span></td>

		<td class="trow1" align="center" valign="middle"><img src="{$theme['imgdir']}/off.png" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}"/></td>

		<td class="trow1" align="center" valign="middle"><span class="smalltext">{$lang->no_new_posts}</span></td>

		<td class="trow1" align="center" valign="middle"><img src="{$theme['imgdir']}/offlock.png" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" /></td>

		<td class="trow1" align="center" valign="middle"><span class="smalltext">{$lang->forum_locked}</span></td>

	</tr>
</table>
<br style="clear: both" />
{$footer}
</body>
</html>
thanks bro the problem has been resolved Big Grin