Author |
Topic  |
|
simonduz
Junior Member
 
161 Posts |
Posted - 23 July 2001 : 14:03:09
|
Can someone help me with the layout of the content.asp file. I have the new version released by Rob Poretti and the view for selections 7 and 8 have some type of table formating that I am having trouble with. There is a break or column of some type that exists to the right and below the main view that is causing unwanted spacing between my page contents. I use 'UltraEdit' for all of my code editing and this file is out of my range of ability at this time. I viewed it in Dreamweaver but I am still lost when it comes to column spans, etc. Here is the file: http://www.easyromantic.com/uploaded/content.txt I would like to eliminate the space that is seen to the right and below the MOD views. You can see what is happening on my site, it is the top middle include. I put a simple border around it to make it more apparent. Thanks simonduz
http://easyromantic.webbhost.net -[test site]- yada, yada. |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 24 July 2001 : 11:59:14
|
quote:
Here is the file: http://www.easyromantic.com/uploaded/content.txt I would like to eliminate the space that is seen to the right and below the MOD views. You can see what is happening on my site, it is the top middle include. I put a simple border around it to make it more apparent. Thanks simonduz
You seem to be making call to DisplayContent within some extra <table><tr><td> tags. To reduce the space at the bottom remove the <br> tag in case "8" at the end
<% case 8 ' //////////// 8 = Graphical 2: Same as Graphical 1 but w/o avatar/photo. //////////// counter = counter + 1 %> <tr> <td> <table cellspacing="0" cellpadding="3"> <tr> <td valign="center" align="left" colspan="2" bgcolor="<% =strHeadCellColor %>" border="1"> <% Call WriteOrnament(Ornament, counter) %> <% Call WriteSubject3(SubjectLength, MessageLength) %> <% if Special then %> <% Call WriteSpecial(Special) %> <% end if %> <br> <% Call WritePostingDetails2() %> </td> </tr> <tr> <td valign="center" align="left" colspan="2" bgcolor="<% =strForumCellColor %>"> <% Call WriteMessage(SafeMode, MessageLength) %> </td> </tr> <tr> <% Call WriteGraphicBar() %> </tr> </table> <br> </td> </tr>
This is what you want??forumSquare
gauravbhabu
There is only one miracle...That is LIFE!
Edited by - gauravbhabu on 24 July 2001 12:14:32 |
 |
|
sijo
Starting Member
16 Posts |
Posted - 24 July 2001 : 12:19:41
|
simonduz , you say that you have downloaded the new version - to what are you referring to please. is there a new version of Snitz available?
|
 |
|
simonduz
Junior Member
 
161 Posts |
Posted - 24 July 2001 : 12:29:43
|
Fixed now. Got some help in the MOD forum. For reference this is what I did. Changed the colspan in display mode 7 to equal 3. Then changed the Sub WriteGraphicBar colspan (at the bottom of the page) to equal 2 and 1 (thus totaling 3) But when you do this you need to change the alignment of a couple of the cells in the Sub WriteGraphicBar. Along with GauravBhabu mentioning the <br> tag and also atomic found the last <td> should be </td>. Everything seems to work fine. Thanks for the help.
quote: you say that you have downloaded the new version - to what are you referring to please.
Rob Poretti created an awesome mod called Content Display Editor, now in version 2. You can check it out here simonduz
http://easyromantic.webbhost.net -[test site]- yada, yada. |
 |
|
GauravBhabu
Advanced Member
    
4288 Posts |
Posted - 24 July 2001 : 12:50:48
|
You seem to have the icons(home,print etc) displaced, they are in two rows now.
forumSquare
gauravbhabu
There is only one miracle...That is LIFE! |
 |
|
|
Topic  |
|