Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Aer theme width

Asked Modified Viewed 3,985 times
D
DarukasLT
D
  • Junior Member, joined since
  • Contributed 19 posts on the community forums.
  • Started 10 threads in the forums
  • Started this discussions
asked
Junior Member

Hello,

Does anybody know how can i set the width of Aer theme? Because on 16:9 screen it looks terrible (so flat), and I want to resize it...

Thank you
0 replies

4 posts

T
Talocha
T
  • Member, joined since
  • Contributed 90 posts on the community forums.
  • Started 10 threads in the forums
answered
Member

theme.php
//Theme Settings
define("THEME_WIDTH", "95%"); //theme width. Make sure to adapt the margin-left in the first div (-width/2).
define("THEME_BULLET", "<span class='bullet'>&middot;</span>"); //bullet image
$enable_colour_switcher = true; //true=enable colour switcher | false=disable colour switcher
$enable_fontsize_switcher = true; //true=enable fontsize switcher | false=disable fontsize switcher
$enable_column_switcher = true; //true=enable column switcher | false=disable column switcher
//Theme Settings /
0 replies
D
DarukasLT
D
  • Junior Member, joined since
  • Contributed 19 posts on the community forums.
  • Started 10 threads in the forums
  • Started this discussions
answered
Junior Member

when I change it, nothing happens, for example I make it 80% and still no difference
0 replies
N
NetriX
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
answered
Senior Member

It still needs some polishing, but it'll make the theme width work.

<?php
/*.aer Theme for PHPFusion v7.......*|
|*.Author: Max "Matonor" Toball......*|
|*.Released under the Affero GPLv3...*/
//Theme Settings
define("THEME_WIDTH", "1140px"); //theme width. Make sure to adapt the margin-left in the first div (-width/2).
define("THEME_BULLET", "<span class='bullet'>&middot;</span>"); //bullet image
$enable_colour_switcher = true; //true=enable colour switcher | false=disable colour switcher
$enable_fontsize_switcher = true; //true=enable fontsize switcher | false=disable fontsize switcher
$enable_column_switcher = true; //true=enable column switcher | false=disable column switcher
//Theme Settings /

if (!defined("IN_FUSION")) { die("Access Denied"); }
require_once INCLUDES."theme_functions_include.php";
require_once THEMES."templates/switcher.php";

$colour_switcher = new Switcher("select", "colour", "png", "blue", "switcherbutton");
if(!$enable_colour_switcher){
   $colour_switcher->disable();
}

$column_switcher = new Switcher("select", "columns", "png", "both", "switcherbutton");
if(!$enable_column_switcher){
   $column_switcher->disable();
}

$fontsize_switcher = new Switcher("increment", "fontsize", "png", 1, "switcherbutton", "", true, array("step" => 0.1, "max" => 1.5));
if(!$enable_fontsize_switcher){
   $fontsize_switcher->disable();
}

redirect_img_dir(THEME."forum", THEME."forum/".$colour_switcher->selected);
set_image("pollbar", THEME."images/navbg.jpg");

function get_head_tags(){
   global $colour_switcher, $fontsize_switcher, $column_switcher;
   echo $colour_switcher->makeHeadTag();
   echo $column_switcher->makeHeadTag();
   echo "<style type='text/css'>body{font-size: ".$fontsize_switcher->selected."em;}</style>";
   echo "<!--[if lte IE 7]><style type='text/css'>.clearfix {display:inline-block;} * html .clearfix{height: 1px;}#subheader ul {display:inline-block;}#subheader ul {display:inline;}#subheader ul li {float:left;}</style><![endif]-->";
}

function render_page($license=false) {
   global $aidlink, $locale, $settings, $colour_switcher, $fontsize_switcher, $column_switcher, $main_style;
   
   echo "\t<div id='body2'>
      <div id='header' class='clearfix'>
         <div class='resized' style='width:".THEME_WIDTH."; margin: 0 auto;'>
            <div id='userbar' class='floatfix'>
               <ul id='anchors' class='flleft'><li><a href='#content'>".$locale['global_210']."</a></li></ul>
               <ul id='links' class='clearfix flright'>\n";
               if(iMEMBER){
                  echo "\t\t\t\t\t\t\t<li><a href='".BASEDIR."edit_profile.php'>".$locale['global_120']."</a> </li>
                  <li> | <a href='".BASEDIR."messages.php'>".$locale['global_121']."</a></li>
                  ".(iADMIN ? "<li> | <a href='".ADMIN."index.php".$aidlink."' >".$locale['global_123']."</a></li>" : "")."
                  <li> | <a href='".BASEDIR."setuser.php?logout=yes'>".$locale['global_124']."</a></li>\n";
               }else{
                  echo "\t\t\t\t\t\t\t<li><a href='".BASEDIR."login.php'>".$locale['global_104']."</a></li>
                  ".($settings['enable_registration'] ? "<li> | <a href='".BASEDIR."register.php'>".$locale['global_107']."</a></li>\n" : "");
               }
               echo "\t\t\t\t\t\t</ul>
            </div>
            <div id='mainheader' class='clearfix'>".showbanners()."</div>
         </div>
      </div>
      <div id='subheader' class='floatfix'>
        <div style='width:".THEME_WIDTH."; margin: 0 auto;'>
         <div class='resized flleft'>
            ".
            preg_replace("^(li)( class='(first-link)')*(><a href='(\.\./)*".preg_quote(START_PAGE)."')^i", "\\1 class='active \\3'\\4", showsublinks(""))."
         </div>
         <div id='switcher' class='flright'>
            
            ".$colour_switcher->makeForm("flright")."
            ".$column_switcher->makeForm("flright")."
            ".$fontsize_switcher->makeForm("flright")."
         </div>
        </div>
      </div>
      <div id='main' style='width:".THEME_WIDTH."; margin: 0 auto;'>
         <div id='cont_r'>
            <div id='cont_l'>
               <div id='cont' class='clearfix $main_style'>
                  ".(LEFT ? "<div id='side-border-left'>".LEFT."</div>" : "")."
                  ".(RIGHT ? "<div id='side-border-right'>".RIGHT."</div>" : "")."
                  <div id='main-bg'><div id='container'>".
                     U_CENTER.
                     CONTENT.
                     L_CENTER."
                  </div></div>
               </div>
            </div>
         </div>
      </div>
   </div>
   <div id='closer'></div>
   <div id='footer' class='floatfix' style='width:".THEME_WIDTH."; margin: 0 auto;'>
      ".(!$license ? "<div class='flleft' style='width: 50%'>".showcopyright()."<br />\n Theme designed by <a href='http://matonor.com'>Max Toball</a></div>" : "")."
      <div class='flright' style='width: 50%; text-align: right;'>".stripslashes($settings['footer'])."</div>
   </div>
   <div id='subfooter' class='clearfix' style='width:".THEME_WIDTH."; margin: 0 auto;'>
      <div class='flleft' style='width: 50%'>".sprintf($locale['global_172'], substr((get_microtime() - START_TIME),0,4))."</div>
      <div class='flright' style='width: 50%; text-align: right;'>".showcounter()."</div>
   </div>";

}

/* New in v7.02 - render comments */
function render_comments($c_data, $c_info){
   global $locale, $settings;
   opentable($locale['c100']);
   if (!empty($c_data)){
      echo "<div class='comments floatfix'>\n";
         $c_makepagenav = '';
         if ($c_info['c_makepagenav'] !== FALSE) {
         echo $c_makepagenav = "<div style='text-align:center;margin-bottom:5px;'>".$c_info['c_makepagenav']."</div>\n";
      }
         foreach($c_data as $data) {
           $comm_count = "<a href='".FUSION_REQUEST."#c".$data['comment_id']."' id='c".$data['comment_id']."' name='c".$data['comment_id']."'>#".$data['i']."</a>";
         echo "<div class='tbl2 clearfix floatfix'>\n";
         if ($settings['comments_avatar'] == "1") { echo "<span class='comment-avatar'>".$data['user_avatar']."</span>\n"; }
           echo "<span style='float:right' class='comment_actions'>".$comm_count."\n</span>\n";
         echo "<span class='comment-name'>".$data['comment_name']."</span>\n<br />\n";
         echo "<span class='small'>".$data['comment_datestamp']."</span>\n";
   if ($data['edit_dell'] !== false) { echo "<br />\n<span class='comment_actions'>".$data['edit_dell']."\n</span>\n"; }
         echo "</div>\n<div class='tbl1 comment_message'>".$data['comment_message']."</div>\n";
      }
      echo $c_makepagenav;
      if ($c_info['admin_link'] !== FALSE) {
         echo "<div style='float:right' class='comment_admin'>".$c_info['admin_link']."</div>\n";
      }
      echo "</div>\n";
   } else {
      echo $locale['c101']."\n";
   }
   closetable();   
}

function render_news($subject, $news, $info) {

   global $locale;
   
   opentable($subject);
   echo "<div class='floatfix'>".$info['cat_image'].$news."</div>
   <div class='news-footer'>
      ".newsposter($info," &middot;").newsopts($info,"&middot;").itemoptions("N",$info['news_id']).
   "</div>\n";
   closetable();

}

function render_article($subject, $article, $info) {

   global $locale;
      
   opentable($subject);
   echo "<div class='floatfix'>".($info['article_breaks'] == "y" ? nl2br($article) : $article)."</div>
   <div class='news-footer'>
      ".articleposter($info," &middot;").articleopts($info,"&middot;").itemoptions("A",$info['article_id']).
   "</div>\n";
   closetable();
}

function opentable($title) {

   echo "\n
   <div class='lbg'><div class='rbg'>
   <div class='tbg'><div class='bbg'>
   <div class='ctl'><div class='cbl'><div class='ctr'><div class='cbr'>
   <div class='panelbody'>".(!empty($title) ? "<h2 class='panelcap'>$title</h2>" : "")."\n";

}

function closetable() {

   echo "\t</div>
   </div></div></div></div></div></div></div></div>\n";

}

$panel_collapse = true;
function openside($title, $collapse = false, $state = "on") {
   
   static $box_id = 0; $box_id++;
   global $panel_collapse, $p_data; $panel_collapse = $collapse;
   
   if($p_data['panel_filename'] == "css_navigation_panel") $title = "";
   
   opentable(($collapse ? panelbutton($state,$box_id) : "").$title);
   echo ($collapse ? panelstate($state, $box_id) : "");
}

function closeside() {

   global $panel_collapse, $p_data;
   
   echo ($panel_collapse ? "\t</div>" : "");
   closetable();


}
?>
Edited by NetriX on 29-12-2014 12:39,
0 replies
D
DarukasLT
D
  • Junior Member, joined since
  • Contributed 19 posts on the community forums.
  • Started 10 threads in the forums
  • Started this discussions
answered
Junior Member

I tried to change the code and edit width but nothing happens.. Whad do i do wrong?
0 replies

Category Forum

Themes Support

Labels

None yet

Statistics

  • Views 0 views
  • Posts 4 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

N
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
T
T
  • Member, joined since
  • Contributed 90 posts on the community forums.
  • Started 10 threads in the forums
D
D
  • Junior Member, joined since
  • Contributed 19 posts on the community forums.
  • Started 10 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet