Page 1 of 2

How to adjust width/height and align to center?

Posted: 08 Dec 2011, 18:02
by kssite
How to adjust width/height and align to center?
Width i found

Code: Select all

#info {
    overflow: visible;
	min-width: 600px;
    width: 70%;
But would like to align to center and maby adjust height a bit too.

Regards
kssite

How to adjust width/height and align to center?

Posted: 08 Dec 2011, 18:13
by Stoker
What do you mean by align center?
The text is centered.

How to adjust width/height and align to center?

Posted: 08 Dec 2011, 18:28
by kssite
Width/Height of the whole Guest/Register bar...
Adjusted width at tubewood.com, and would like to center it over forum... sample is live at site.

How to adjust width/height and align to center?

Posted: 08 Dec 2011, 18:32
by doktornotor
kssite wrote:Width/Height of the whole Guest/Register bar...
Adjusted width at tubewood.com, and would like to center it over forum... sample is live at site.
Not really sure what you mean by sample? It overlaps site navigation, is broken since the width is about 2/3 of the total width and in general is annoying like hell when misplaced like this.

How to adjust width/height and align to center?

Posted: 08 Dec 2011, 18:38
by kssite
Thats why I want it to be on center and 70% of width, so i can place it on top and it wont overlap logo of my site ;)

How to adjust width/height and align to center?

Posted: 08 Dec 2011, 18:51
by doktornotor
If you do not want to overlap the logo, then move the thing to the bottom.

Code: Select all

#info {
	overflow: visible;
	min-width: 750px;
	width: 100%;
	position: fixed;
	bottom: 0px;
	left: 0;
	z-index:200;
	margin-top: -15px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	font-weight: bold;
}

#infobar a, #infobar a:link, #infobar a:visited, #infobar a:active {
	display: block;
	float: left;
	width:100%;
	clear: both;
	color: #fff;
	padding: .85em 0 .85em 0;
	border-top: .25em solid #fff;
	text-align: center;
	text-decoration: none;
	background-image: url("{T_THEME_PATH}/images/pmreg.png");
	background-position: bottom;
	background-repeat:repeat-x;
}

#infobar a:hover {
	color: #fff;
	background-image: url("{T_THEME_PATH}/images/pmreg.png");
	background-position: top;
	background-repeat:repeat-x;
	border-top: .25em solid #fff;
	cursor: pointer;
}

How to adjust width/height and align to center?

Posted: 08 Dec 2011, 18:57
by kssite
Was thinking that myself too, but would really prefer top... 60-70% width and centered...
Widht i managed to tweak, but didnt find way to center the whole thing.

How to adjust width/height and align to center?

Posted: 10 Dec 2011, 01:56
by _Jo_
Hi all,
i have the same problem to!
(phpbb 3.0.9)
I use prosilver based Tempalte- but my Logo will not be placed in center!?

Code: Select all



{META}
<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>

<!-- IF S_ENABLE_FEEDS -->
        <!-- IF S_ENABLE_FEEDS_OVERALL --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_NEWS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_NEWS}" href="{U_FEED}?mode=news" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_FORUMS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_ALL_FORUMS}" href="{U_FEED}?mode=forums" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_TOPICS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_NEW}" href="{U_FEED}?mode=topics" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_TOPICS_ACTIVE --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_ACTIVE}" href="{U_FEED}?mode=topics_active" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_FORUM and S_FORUM_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FORUM} - {FORUM_NAME}" href="{U_FEED}?f={S_FORUM_ID}" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_TOPIC and S_TOPIC_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_TOPIC} - {TOPIC_TITLE}" href="{U_FEED}?f={S_FORUM_ID}&t={S_TOPIC_ID}" /><!-- ENDIF -->
<!-- ENDIF -->

<!--
        phpBB style name: Absolution
        Based on style:   prosilver (this is the default phpBB3 style)
        Original author:  Tom Beddard ( http://xxx.subBlue.xxx/ )
        Modified by: Christian Bullock ( http://xxx.ChristianBullock.xxx/ )

        NOTE: This page was generated by phpBB, the free open-source bulletin board package.
              The phpBB Group is not responsible for the content of this page and forum. For more information
              about phpBB please visit http://xxx.phpbb.xxx
-->

<script type="text/javascript">
// <![CDATA[
        var jump_page = '{LA_JUMP_PAGE}:';
        var on_page = '{ON_PAGE}';
        var per_page = '{PER_PAGE}';
        var base_url = '{A_BASE_URL}';
        var style_cookie = 'phpBBstyle';
        var style_cookie_settings = '{A_COOKIE_SETTINGS}';
        var onload_functions = new Array();
        var onunload_functions = new Array();

        <!-- IF S_USER_PM_POPUP -->
                if ({S_NEW_PM})
                {
                        var url = '{UA_POPUP_PM}';
                        window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');
                }
        <!-- ENDIF -->

        /**
        * Find a member
        */
        function find_username(url)
        {
                popup(url, 760, 570, '_usersearch');
                return false;
        }

        /**
        * New function for handling multiple calls to window.onload and window.unload by pentapenguin
        */
        window.onload = function()
        {
                for (var i = 0; i < onload_functions.length; i++)
                {
                        eval(onload_functions[i]);
                }
        }

        window.onunload = function()
        {
                for (var i = 0; i < onunload_functions.length; i++)
                {
                        eval(onunload_functions[i]);
                }
        }

// ]]>
</script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/tooltip.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/dropdown.js"></script>

<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />

<link href="{T_THEME_PATH}/normal.css" rel="stylesheet" type="text/css" title="A" />
<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" />
<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" />

<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
        <link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- ENDIF -->

<!--[if IE]>
        <link rel="stylesheet" type="text/css" href="{T_THEME_PATH}/ie.css" />
<![endif]-->

</head>

<body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">


<div id="page-wrap" style="width: {$ABSOLUTION_BOARD_WIDTH};">

<div id="main-sidebar"></div>

        <div id="main-content">

<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
<a id="top" name="top" accesskey="t"></a>

<div id="wrap">
    <div id="header">
            <div id="header-left">
        <!-- IF $LOGO_TYPE == 'image' -->
        <a href="{U_PORTAL}">{SITE_LOGO_IMG}</a>
                <!-- ENDIF -->
        <!-- IF $LOGO_TYPE == 'text' -->
                <div id="site-details">{SITENAME}<br />
                <span>{SITE_DESCRIPTION}</span>
        </div>
        <!-- ENDIF -->
                </div><!-- /header-left-->
                <div id="header-right">
                    <!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
                    <div id="<!-- IF not S_USER_LOGGED_IN -->formbox<!-- ELSE -->header-search-box<!-- ENDIF -->">









                        </div><!--/formbox / search-box-->
                        <!-- ENDIF -->
                </div><!--/header-right-->
        </div><!-- /header-->

             <!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->

        <div class="float-left breadcrumbs"><img src="{T_THEME_PATH}/images/house.png" width="16" height="16" alt="" />

        <!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->

            <a href="{U_INDEX}" accesskey="h">{L_INDEX}</a>




             <!-- BEGIN navlinks --> <strong>&raquo;</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks -->
        </div><!-- /float-left / breadcrumbs -->

        <div class="float-right">
            <!-- IF U_RESTORE_PERMISSIONS --><span class="alert"><img src="{T_THEME_PATH}/images/error.png" width="16" height="16" alt="" /> <a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a></span><!-- IF U_RESTORE_PERMISSIONS and S_BOARD_DISABLED --> &bull; <!-- ENDIF --><!-- ENDIF -->
                <!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) --><span class="alert"><img src="{T_THEME_PATH}/images/error.png" width="16" height="16" alt="" /> {L_INFORMATION}: {L_BOARD_DISABLED}</span><!-- ENDIF -->
                <span class="breadcrumbs"><img src="{T_THEME_PATH}/images/font_add.png" width="16" height="16" alt="" /> <a href="#" onclick="fontsizeup(); return false;" onkeypress="return fontsizeup(event);" title="{L_CHANGE_FONT_SIZE}">{L_CHANGE_FONT_SIZE}</a> &nbsp;<!-- IF U_EMAIL_TOPIC --><img src="{T_THEME_PATH}/images/email_add.png" width="16" height="16" alt="" /> <a href="{U_EMAIL_TOPIC}" title="{L_EMAIL_TOPIC}">{L_EMAIL_TOPIC}</a> &nbsp;<!-- ENDIF --><!-- IF U_EMAIL_PM --><a href="{U_EMAIL_PM}" title="{L_EMAIL_PM}">{L_EMAIL_PM}</a><!-- ENDIF --><!-- IF U_PRINT_TOPIC --><img src="{T_THEME_PATH}/images/printer_add.png" width="16" height="16" alt="" /> <a href="{U_PRINT_TOPIC}" title="{L_PRINT_TOPIC}" accesskey="p">{L_PRINT_TOPIC}</a><!-- ENDIF --><!-- IF U_PRINT_PM --><img src="{T_THEME_PATH}/images/printer_add.png" width="16" height="16" alt="" /> <a href="{U_PRINT_PM}" title="{L_PRINT_PM}" accesskey="p">{L_PRINT_PM}</a><!-- ENDIF --></span>
        </div>
        <div class="clear-both" style="margin-bottom: 6px;"></div>

        <div class="toolbar">
            <div class="toolbar-left">
                    <!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
                            <img src="{T_THEME_PATH}/images/user_edit.png" width="16" height="16" alt="" /> <a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="e">{L_PROFILE}</a>
                                <!-- IF S_DISPLAY_PM --><img src="{T_THEME_PATH}/images/<!-- IF S_USER_NEW_PRIVMSG -->email_open<!-- ELSE -->email<!-- ENDIF -->.png" width="16" height="16" alt="" /> <a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a><!-- ENDIF -->
                <!-- IF S_DISPLAY_SEARCH -->&bull; <a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><!-- ENDIF -->
            <!-- ENDIF -->
        </div><!-- /toolbar-left -->
        <div class="toolbar-right">
                <img src="{T_THEME_PATH}/images/help.png" width="16" height="16" alt="" /> <a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a>
            <!-- IF S_DISPLAY_MEMBERLIST and not S_IS_BOT --><img src="{T_THEME_PATH}/images/group.png" width="16" height="16" alt="" /> <a href="../forum/impressum.php" title="{L_IMPRESSUM}" accesskey="l">{L_IMPRESSUM}</a><!-- ENDIF -->
            <!-- IF S_DISPLAY_SEARCH --><img src="{T_THEME_PATH}/images/magnifier.png" width="16" height="16" alt="" /> <a href="{U_SEARCH}" title="{L_SEARCH}">{L_SEARCH}</a><!-- ENDIF -->
            <!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --><img src="{T_THEME_PATH}/images/add.png" width="16" height="16" alt="" /> <a href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF -->
            <img src="{T_THEME_PATH}/images/<!-- IF not S_USER_LOGGED_IN -->key<!-- ELSE -->disconnect<!-- ENDIF -->.png" width="16" height="16" alt="" /> <a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x">{L_LOGIN_LOGOUT}</a>
        </div><!-- /toolbar-right -->
    </div><!-- /toolbar -->
        <!-- ENDIF -->

        <div class="clear-both"></div>

        <a name="start_here"></a>
        <div id="page-body">
what is wrong??
can any1 please help me?

Thanx :)

How to adjust width/height and align to center?

Posted: 10 Dec 2011, 10:12
by Stoker
_Jo_ wrote:Hi all,
i have the same problem to!
(phpbb 3.0.9)
I use prosilver based Tempalte- but my Logo will not be placed in center!?

Code: Select all



{META}
<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>

<!-- IF S_ENABLE_FEEDS -->
        <!-- IF S_ENABLE_FEEDS_OVERALL --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_NEWS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_NEWS}" href="{U_FEED}?mode=news" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_FORUMS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_ALL_FORUMS}" href="{U_FEED}?mode=forums" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_TOPICS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_NEW}" href="{U_FEED}?mode=topics" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_TOPICS_ACTIVE --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_ACTIVE}" href="{U_FEED}?mode=topics_active" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_FORUM and S_FORUM_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FORUM} - {FORUM_NAME}" href="{U_FEED}?f={S_FORUM_ID}" /><!-- ENDIF -->
        <!-- IF S_ENABLE_FEEDS_TOPIC and S_TOPIC_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_TOPIC} - {TOPIC_TITLE}" href="{U_FEED}?f={S_FORUM_ID}&t={S_TOPIC_ID}" /><!-- ENDIF -->
<!-- ENDIF -->

<!--
        phpBB style name: Absolution
        Based on style:   prosilver (this is the default phpBB3 style)
        Original author:  Tom Beddard ( http://xxx.subBlue.xxx/ )
        Modified by: Christian Bullock ( http://xxx.ChristianBullock.xxx/ )

        NOTE: This page was generated by phpBB, the free open-source bulletin board package.
              The phpBB Group is not responsible for the content of this page and forum. For more information
              about phpBB please visit http://xxx.phpbb.xxx
-->

<script type="text/javascript">
// <![CDATA[
        var jump_page = '{LA_JUMP_PAGE}:';
        var on_page = '{ON_PAGE}';
        var per_page = '{PER_PAGE}';
        var base_url = '{A_BASE_URL}';
        var style_cookie = 'phpBBstyle';
        var style_cookie_settings = '{A_COOKIE_SETTINGS}';
        var onload_functions = new Array();
        var onunload_functions = new Array();

        <!-- IF S_USER_PM_POPUP -->
                if ({S_NEW_PM})
                {
                        var url = '{UA_POPUP_PM}';
                        window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');
                }
        <!-- ENDIF -->

        /**
        * Find a member
        */
        function find_username(url)
        {
                popup(url, 760, 570, '_usersearch');
                return false;
        }

        /**
        * New function for handling multiple calls to window.onload and window.unload by pentapenguin
        */
        window.onload = function()
        {
                for (var i = 0; i < onload_functions.length; i++)
                {
                        eval(onload_functions[i]);
                }
        }

        window.onunload = function()
        {
                for (var i = 0; i < onunload_functions.length; i++)
                {
                        eval(onunload_functions[i]);
                }
        }

// ]]>
</script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/tooltip.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/dropdown.js"></script>

<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />

<link href="{T_THEME_PATH}/normal.css" rel="stylesheet" type="text/css" title="A" />
<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" />
<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" />

<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
        <link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- ENDIF -->

<!--[if IE]>
        <link rel="stylesheet" type="text/css" href="{T_THEME_PATH}/ie.css" />
<![endif]-->

</head>

<body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">


<div id="page-wrap" style="width: {$ABSOLUTION_BOARD_WIDTH};">

<div id="main-sidebar"></div>

        <div id="main-content">

<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
<a id="top" name="top" accesskey="t"></a>

<div id="wrap">
    <div id="header">
            <div id="header-left">
        <!-- IF $LOGO_TYPE == 'image' -->
        <a href="{U_PORTAL}">{SITE_LOGO_IMG}</a>
                <!-- ENDIF -->
        <!-- IF $LOGO_TYPE == 'text' -->
                <div id="site-details">{SITENAME}<br />
                <span>{SITE_DESCRIPTION}</span>
        </div>
        <!-- ENDIF -->
                </div><!-- /header-left-->
                <div id="header-right">
                    <!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
                    <div id="<!-- IF not S_USER_LOGGED_IN -->formbox<!-- ELSE -->header-search-box<!-- ENDIF -->">









                        </div><!--/formbox / search-box-->
                        <!-- ENDIF -->
                </div><!--/header-right-->
        </div><!-- /header-->

             <!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->

        <div class="float-left breadcrumbs"><img src="{T_THEME_PATH}/images/house.png" width="16" height="16" alt="" />

        <!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->

            <a href="{U_INDEX}" accesskey="h">{L_INDEX}</a>




             <!-- BEGIN navlinks --> <strong>&raquo;</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks -->
        </div><!-- /float-left / breadcrumbs -->

        <div class="float-right">
            <!-- IF U_RESTORE_PERMISSIONS --><span class="alert"><img src="{T_THEME_PATH}/images/error.png" width="16" height="16" alt="" /> <a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a></span><!-- IF U_RESTORE_PERMISSIONS and S_BOARD_DISABLED --> &bull; <!-- ENDIF --><!-- ENDIF -->
                <!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) --><span class="alert"><img src="{T_THEME_PATH}/images/error.png" width="16" height="16" alt="" /> {L_INFORMATION}: {L_BOARD_DISABLED}</span><!-- ENDIF -->
                <span class="breadcrumbs"><img src="{T_THEME_PATH}/images/font_add.png" width="16" height="16" alt="" /> <a href="#" onclick="fontsizeup(); return false;" onkeypress="return fontsizeup(event);" title="{L_CHANGE_FONT_SIZE}">{L_CHANGE_FONT_SIZE}</a> &nbsp;<!-- IF U_EMAIL_TOPIC --><img src="{T_THEME_PATH}/images/email_add.png" width="16" height="16" alt="" /> <a href="{U_EMAIL_TOPIC}" title="{L_EMAIL_TOPIC}">{L_EMAIL_TOPIC}</a> &nbsp;<!-- ENDIF --><!-- IF U_EMAIL_PM --><a href="{U_EMAIL_PM}" title="{L_EMAIL_PM}">{L_EMAIL_PM}</a><!-- ENDIF --><!-- IF U_PRINT_TOPIC --><img src="{T_THEME_PATH}/images/printer_add.png" width="16" height="16" alt="" /> <a href="{U_PRINT_TOPIC}" title="{L_PRINT_TOPIC}" accesskey="p">{L_PRINT_TOPIC}</a><!-- ENDIF --><!-- IF U_PRINT_PM --><img src="{T_THEME_PATH}/images/printer_add.png" width="16" height="16" alt="" /> <a href="{U_PRINT_PM}" title="{L_PRINT_PM}" accesskey="p">{L_PRINT_PM}</a><!-- ENDIF --></span>
        </div>
        <div class="clear-both" style="margin-bottom: 6px;"></div>

        <div class="toolbar">
            <div class="toolbar-left">
                    <!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
                            <img src="{T_THEME_PATH}/images/user_edit.png" width="16" height="16" alt="" /> <a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="e">{L_PROFILE}</a>
                                <!-- IF S_DISPLAY_PM --><img src="{T_THEME_PATH}/images/<!-- IF S_USER_NEW_PRIVMSG -->email_open<!-- ELSE -->email<!-- ENDIF -->.png" width="16" height="16" alt="" /> <a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a><!-- ENDIF -->
                <!-- IF S_DISPLAY_SEARCH -->&bull; <a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><!-- ENDIF -->
            <!-- ENDIF -->
        </div><!-- /toolbar-left -->
        <div class="toolbar-right">
                <img src="{T_THEME_PATH}/images/help.png" width="16" height="16" alt="" /> <a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a>
            <!-- IF S_DISPLAY_MEMBERLIST and not S_IS_BOT --><img src="{T_THEME_PATH}/images/group.png" width="16" height="16" alt="" /> <a href="../forum/impressum.php" title="{L_IMPRESSUM}" accesskey="l">{L_IMPRESSUM}</a><!-- ENDIF -->
            <!-- IF S_DISPLAY_SEARCH --><img src="{T_THEME_PATH}/images/magnifier.png" width="16" height="16" alt="" /> <a href="{U_SEARCH}" title="{L_SEARCH}">{L_SEARCH}</a><!-- ENDIF -->
            <!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --><img src="{T_THEME_PATH}/images/add.png" width="16" height="16" alt="" /> <a href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF -->
            <img src="{T_THEME_PATH}/images/<!-- IF not S_USER_LOGGED_IN -->key<!-- ELSE -->disconnect<!-- ENDIF -->.png" width="16" height="16" alt="" /> <a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x">{L_LOGIN_LOGOUT}</a>
        </div><!-- /toolbar-right -->
    </div><!-- /toolbar -->
        <!-- ENDIF -->

        <div class="clear-both"></div>

        <a name="start_here"></a>
        <div id="page-body">
what is wrong??
can any1 please help me?

Thanx :)
You question is not related to this mod.
Visit phpbb.coms styles forum and ask there. Or do a search. Im sure it has been asked and answered before.

How to adjust width/height and align to center?

Posted: 10 Dec 2011, 10:40
by _Jo_
Sorry, nothing found ....
...and nothing will help..... :-(