Width of the column
4 posters
Page 1 of 1
Width of the column
Good Morning everyone!
I would like to change the width of the main forum columns. The one that show the forums, the statistics column and the last topic column. I cannot find it in the templates. Is there any code i should use?
My forum is punbb version. Thanks..
I would like to change the width of the main forum columns. The one that show the forums, the statistics column and the last topic column. I cannot find it in the templates. Is there any code i should use?
My forum is punbb version. Thanks..
Last edited by Marios94 on Mon 11 Nov - 20:01; edited 1 time in total
Re: Width of the column
Go in administration panel -> Forum -> Configuration
Change forum width in Pages structure
Change forum width in Pages structure
Re: Width of the column
that changes the categories width.. all i want is this:
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Width of the column
This is codes:
tcl - forum name
tc2 - number of topics
tc3 - number of posts
tcr - for last post
Example:
Paste this in css:
tcl - forum name
tc2 - number of topics
tc3 - number of posts
tcr - for last post
Example:
Paste this in css:
- Code:
.tcl {
width: 70%;
}
.tc2 {
width: 5%;
}
.tc3 {
width: 5%;
}
.tcr {
width: 20%;
}
Re: Width of the column
Ιm sorry my friend but none of the codes above work.. if u want i can show you the code in the template! Will it help u?
- Τemplate:
- <div class="pun-crumbs">
<p class="crumbs"><a href="{U_INDEX}">{L_INDEX}</a><strong>{NAV_CAT_DESC}</strong></p>
</div>
<div class="main">
<!-- BEGIN catrow -->
<!-- BEGIN tablehead -->
<div class="main-head">
<div class="page-title">{catrow.tablehead.L_FORUM}</div>
</div>
<div class="main-content">
<table cellspacing="0" class="table">
<thead>
<tr>
<th class="tcl"></th>
<th class="tc2"><b>Statistics</b></th>
<th class="tcr"><center><b>Info for Last Topic</b></center></th>
</tr>
</thead>
<tbody class="statused">
<!-- END tablehead -->
<!-- BEGIN forumrow -->
<tr>
<td class="tcl" width="450px" style="padding-right: {catrow.forumrow.INC_LEVEL_RIGHT}; padding-left: {catrow.forumrow.INC_LEVEL_LEFT};">
<span class="status" style="margin-right: -{catrow.forumrow.INC_WIDTH_ICON}; margin-left: -{catrow.forumrow.INC_WIDTH_ICON};">
<img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" />
</span>
<h{catrow.forumrow.LEVEL} class="hierarchy"><a href="{catrow.forumrow.U_VIEWFORUM}" class="forumtitle">{catrow.forumrow.FORUM_NAME}</a></h{catrow.forumrow.LEVEL}>
<br />
<div class="descript"><span class="genmed">{catrow.forumrow.FORUM_DESC}</span></div>
<div class="subforums"><span class="gensmall">
<!-- BEGIN switch_moderators_links -->
{catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}
<!-- END switch_moderators_links -->
{catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}
</span></div>
<strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}
</td>
<td class="tc2" align="center" valign="middle" height="50" width="200">
<span class="gensmall"><b>Topics :</b> {catrow.forumrow.POSTS}<br /><div class="staticanswer">Αnswers :</div> {catrow.forumrow.TOPICS}</span>
</td>
<td class="tcr" align="right" valign="right">
<span><center>
<!-- BEGIN switch_topic_title -->
<a href="{catrow.forumrow.U_LATEST_TOPIC}" title="{catrow.forumrow.LATEST_TOPIC_TITLE}">{catrow.forumrow.LATEST_TOPIC_NAME}</a><br />
<!-- END switch_topic_title -->
{catrow.forumrow.USER_LAST_POST}
</center></span>
</td>
</tr>
<!-- END forumrow -->
<!-- BEGIN tablefoot -->
</tbody>
</table>
</div>
<!-- END tablefoot -->
<!-- END catrow -->
</div>
<!-- BEGIN switch_on_index -->
<div class="main-box clearfix">
<p class="left"><a href="{U_TODAY_ACTIVE}">{L_TODAY_ACTIVE}</a></p>
<p class="right"><a href="{U_SEARCH_SELF}">My posts</a></p>
</div>
<!-- END switch_on_index -->
Re: Width of the column
That code is CSS code. Add to your CSS Stylesheet.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Width of the column
i did but still nothing
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Width of the column
Please post your template here with the code tags.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Width of the column
Hello Marios94,
I'm just going by your image, but is this what you want?
Last Posts: Width 250px
Stats: Width 60px
Try this in your CSS stylesheet:
Administration Panel > Display > Pictures and colors > Colors > CSS stylesheet
Paste the codes below and submit
I'm just going by your image, but is this what you want?
Last Posts: Width 250px
Stats: Width 60px
Try this in your CSS stylesheet:
Administration Panel > Display > Pictures and colors > Colors > CSS stylesheet
Paste the codes below and submit
- Code:
.pun .main-content .tc2{
width:100px;
}
.pun .main-content .tcr{
width:250px;
}
.pun .main-content .tcl{
width:700px;
}
Re: Width of the column
Thank you Seth!!! The code works!!! Thank you very much!!!!!!!!!!
You can close the topic!!!
You can close the topic!!!
Re: Width of the column
Topic Solved & Locked
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Similar topics
» Column width and length
» Increase width of LAST POSTS column?
» Last column width and Category titles centred
» min-width for last post column on index page
» Increasing the websites overall column width/ enlarging the site
» Increase width of LAST POSTS column?
» Last column width and Category titles centred
» min-width for last post column on index page
» Increasing the websites overall column width/ enlarging the site
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum