Demax
Demax is a 3 columns fixed width WordPress theme by MagPress.com. This WordPress template has theme options, featured content and categories, Adsense ready, etc.
Tags: Adsense Ready, Custom Menu, Featured Content, Fixed Width, Left Sidebar, Right Sidebar, Theme Options, Threaded Comments, Three Columns, Twitter Ready, White, Widget Ready
Is there a way to change the large ad on the top right to something custom?
Yes. You can put any size of html ads code inside the theme options. As long as it doesn’t break the layout. Thanks.
Thank You!
How can I set images in featured content slider if I doont want to use there the images posted in posts? Just like on demo site.
you can add each post image via post custom field. keyname ‘slider’ and keyvalue ‘your image full url path’
Thank You!
In Demax theme, is there any way not to display left side when wou are in posts or pages detail wiew?
try add this in header.php before end < /head >
[php]
<?php if( is_singular() ): ?>
<style>
#cleft {display:none !important; }
#cright {float: left !important; width: 98.5% !important; }
</style>
<?php endif; ?>
[/php]