D3mon how will you add this picture with lik for example http://forum.snitz.com/forum just for expample in your inc_left.asp here is the link from the pic thnx<
I want to use the inc_site_left - however when I add text to it - there is still a large margin inbetween the end of the text and the left boarder of the forum. So in the example below I wish to have the letter 'o' of the word 'hello' as close as possible (ideally no margin at all - i.e touching) the side of the forum.
Thats odd, I thought I'd designed it to 'crush' the outer areas to their minimum content width. Check the mod code in your inc_header.asp file and add width="100%" to the last <td> tag (to force the main content in the center to maximum width) that should do it.<
if strSiteIntegEnabled = "1" then
response.write "<table width=""100%"" border="""
if strSiteBorder = "1" then
response.write "1"
else
response.write "0"
end if
response.write """ cellspacing=""0"" cellpadding=""0"">" & vbNewLine
if strSiteHeader = "1" then
response.write " <tr>" & vbNewLine & _
" <td"
if strSiteleft = "1" then
if strSiteRight = "1" then
response.write " colspan=""3"""
else
response.write " colspan=""2"""
end if
end if
response.write ">"
%><!--#include file="inc_site_header.asp"--><%
response.write "</td>" & vbNewLine & _
" </tr>" & vbNewLine
end if
response.write " <tr>" & vbNewLine & _
" <td>" & vbNewLine
if strSiteLeft = "1" then
%><!--#include file="inc_site_left.asp"--><%
response.write "</td>" & vbNewLine & _
" <td width=""100%"">" & vbNewLine
end if
end if
AH - now this is interesting - I have placed boarders on over at http://www.simplybuffy.com/buffy/forum/default.asp and in that sence it is working. However how would I go about removing that huge inch of wated space between the boarder and the forum??????