 |
 |
 |
 |
#115856 - 12/13/04 11:04 PM
Re: Sidebar owns me
|
Coder
Registered: 06/10/01
Posts: 705
Loc: CT
|
At least you are getting something on the side... Mine appears above the forums in the section with logo or at the actual head and foot of the page. Can't for the life of me get it on the side. Searched the forums and used all the codes provided as well as the code in the database outlining left and right bars. Sigh...
_________________________
...Steven Hostboard.com Running UBB v6.1.0.4 Doing what NO other UBB in the world is doing. The first & only production UBB powered by MySQL.
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#115862 - 12/15/04 12:49 AM
Re: Sidebar owns me
|
Coder
Registered: 06/10/01
Posts: 705
Loc: CT
|
Ian thank you for finding my problem In your header section: <table border="0" cellpadding="0" cellspacing="0" width="100%" id="SideBars">
<tr>
<!-- Disable Left Side Bar
<td width="15%">
<table border="0" cellpadding="0" cellspacing="0" width="95%" align="center" id="Left Sidebar">
<tr><td width="100%">
Left Sidebar</td></tr>
</table></td> -->
<td width="70%"> To enable the left side bar remove the remarks In your footer section: </td><td width="10%">
<table border="0" cellpadding="0" cellspacing="0" width="95%" align="center" id="Right Sidebar">
<tr><td width="100%">
Right Sidebar</td></tr>
</table></td></tr></table> To add your code just add/replace "Right SideBar" and or "Left SideBar" text with whatever you want. To adjust the physical size in the footer section change 10% to what ever you want. If you want an example of what was done here jsut right click view text and search for "<!--start footer-->" and youc an see how/what was added.
_________________________
...Steven Hostboard.com Running UBB v6.1.0.4 Doing what NO other UBB in the world is doing. The first & only production UBB powered by MySQL.
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#115866 - 12/16/04 06:24 PM
Re: Sidebar owns me
|
Coder
Registered: 06/10/01
Posts: 705
Loc: CT
|
When building a site it is nice to know about your users. The more you know the better. Not on a personal level but in terms of how they are viewing your site. This is only a small piece of what you should track  I use AWStats for mine. This allows me to know the actual screen resolution thus I can build the site to the bulk of the general population. You might want to try reducing the side bar(s) to 10% I think the code on the first page was 15%? Are you using the left side bar as well as the right? What I would like to see someday is somehow dynamicaly display a site based on the users resolution.
_________________________
...Steven Hostboard.com Running UBB v6.1.0.4 Doing what NO other UBB in the world is doing. The first & only production UBB powered by MySQL.
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#115868 - 12/17/04 09:30 AM
Re: Sidebar owns me
|
Coder
Registered: 06/10/01
Posts: 705
Loc: CT
|
Ok here is something interesting and hopefully Ian or someone with more knowledge will chime in. This would deal more with ColorForums and useing CSS to center the site may or may not help or even work. In CSS file make sure to add "text-align: center;" and the new container entry body {
text-align: center;
background: #fff;
color: #000;
margin: 0;
}
#container {
width: 758px;
border: 1px solid #666;
background: #fff;
color: #000;
margin: 0;
text-align: left;
}In the header section add: In the footer section add: Any instance of: <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> Whould be replaced with:
_________________________
...Steven Hostboard.com Running UBB v6.1.0.4 Doing what NO other UBB in the world is doing. The first & only production UBB powered by MySQL.
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#115870 - 12/17/04 07:30 PM
Re: Sidebar owns me
|
Master Hacker
Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
|
|
|
Top
|
|
|
|
 |
 |
 |
 |
|
|