FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum » How To » Reducing the overall width of the forum.
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
Reducing the overall width of the forum. [message #29153] Fri, 02 December 2005 03:57 Go to next message
gwarren is currently offline  gwarren   United States
Messages: 6
Registered: December 2005
Location: Washington
Karma: 0
Junior Member
I would like to simply reduce the overall width of the forum borders. I am unable to find the are of the forum.css temp where I can reduce the width?

thanks
Re: Reducing the overall width of the forum. [message #29159 is a reply to message #29153] Fri, 02 December 2005 15:25 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Are you talking about borders or margins? Borders are at 1px, you cannot make them any smaller then they are now.

FUDforum Core Developer
Re: Reducing the overall width of the forum. [message #29170 is a reply to message #29159] Fri, 02 December 2005 16:41 Go to previous messageGo to next message
gwarren is currently offline  gwarren   United States
Messages: 6
Registered: December 2005
Location: Washington
Karma: 0
Junior Member
I am talking about what is outside the border and I would like to do the opposite. I would like to narrow the overall presentation so the board itself does not have such a big footprint on the screen. Say increase the blue( whatever color i have ) background area to be more like one inch. I dont even need the border Imight make it the same color as the background.

I hope this clarifies.

Re: Reducing the overall width of the forum. [message #29171 is a reply to message #29170] Fri, 02 December 2005 16:42 Go to previous messageGo to next message
gwarren is currently offline  gwarren   United States
Messages: 6
Registered: December 2005
Location: Washington
Karma: 0
Junior Member
ON this very screen the background is grey. it falls just outside the white edge. I would like to reduce the overall size of the board over the background. more narrow.
Thanks
Re: Reducing the overall width of the forum. [message #29173 is a reply to message #29171] Fri, 02 December 2005 16:59 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Edit header.tmpl and adjust the width of the <table> tag inside the header section.

FUDforum Core Developer
Re: Reducing the overall width of the forum. [message #29177 is a reply to message #29173] Fri, 02 December 2005 18:10 Go to previous messageGo to next message
gwarren is currently offline  gwarren   United States
Messages: 6
Registered: December 2005
Location: Washington
Karma: 0
Junior Member
Thank you I got it. It does also adjust the top of the header which I wasnt thinking was neccesary. But it is working.

Can you tell me what the lines are called that divide the forums and categories. Obviously they are borders but what file would I find them in.

Thanks. I am just learning this stuff. So I apologize for the simple questions.

Greg
Re: Reducing the overall width of the forum. [message #29178 is a reply to message #29177] Fri, 02 December 2005 18:12 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Look inside index.tmpl

FUDforum Core Developer
Re: Reducing the overall width of the forum. [message #29180 is a reply to message #29178] Fri, 02 December 2005 20:30 Go to previous messageGo to next message
gwarren is currently offline  gwarren   United States
Messages: 6
Registered: December 2005
Location: Washington
Karma: 0
Junior Member
I apologize.. but what should I look for in the index. What would the item be that controls the color and size of the border lines between the sections of each page. They are white on this particular one.

See the attached photos
Re: Reducing the overall width of the forum. [message #29396 is a reply to message #29180] Sat, 17 December 2005 20:39 Go to previous messageGo to next message
Zeppelin   United States
Messages: 3
Registered: December 2005
Karma: 0
Junior Member
Help php/Fudforum noob here

I wanted to reduce the size of our forum
I fallowed all the stuff here and the forum is smaller but I can't seem to make it center up in IE any info would be great thanks Zep

FragginRockers
Re: Reducing the overall width of the forum. [message #29401 is a reply to message #29396] Sun, 18 December 2005 14:14 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
you need to put the forum's main table inside <div align="center"> (put that into the header.tmpl before the <table> tag. And then add </div> after </table> inside the footer.tmpl template. That should do the trick.

FUDforum Core Developer
Re: Reducing the overall width of the forum. [message #29407 is a reply to message #29401] Sun, 18 December 2005 20:23 Go to previous messageGo to next message
Zeppelin   United States
Messages: 3
Registered: December 2005
Karma: 0
Junior Member
Header

<BASE HREF="{FULL_ROOT}">
<script language="javascript" src="lib.js" type="text/javascript"></script>
<link rel="StyleSheet" href="{THEME_ROOT}/forum.css" type="text/css" media="screen" title="FnR Theme">


</head>
<p align="center"><a target="_self" href="http://www.fragginrockers.net"><img border="0" src="theme/FnR/images/BANNER3.jpg" width="800" height="150"></p>

<body>
<div align="center">
<table class="wa" border="0" cellspacing="3" cellpadding="5" class="ForumBackground"
<tr><td  width="760">


Footer

</td></tr></table></div><div class="ForumBackground ac foot"  

<b>.::</b> <a href="mailto:{GVAR: ADMIN_EMAIL}">{MSG: forum_contact}</a> <b>::</b> <a href="{TEMPLATE: footer_lnk}">{MSG: forum_home}</a> <b>::.</b>
<p>
<span class="SmallText">Powered by: FUDforum {GVAR: FORUM_VERSION}.<br />Copyright &copy;2001-2004 <a href="http://fudforum.org/">FUD Forum Bulletin Board Software</a></span>
</div></body></html>


still not centered what else do i have thats wrong
thanks for your help

fragginrockers
Re: Reducing the overall width of the forum. [message #29414 is a reply to message #29407] Mon, 19 December 2005 16:43 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Your table tag appears to be missing > at the end of it.

FUDforum Core Developer
Re: Reducing the overall width of the forum. [message #29420 is a reply to message #29153] Mon, 19 December 2005 23:00 Go to previous message
Zeppelin   United States
Messages: 3
Registered: December 2005
Karma: 0
Junior Member
<div align="center">
<table> <class="wa" border="0" cellspacing="3" cellpadding="5" class="ForumBackground"> <tr><td width="760"

that fixed it along with a few other error's thank you for your help
love the fudforum
thanks again
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Files getting truncated
Next Topic: private messages
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Sep 20 15:43:16 GMT 2024

Total time taken to generate the page: 0.02738 seconds