Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: General / Previous versions
 Margin problem...
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

pianomagic
Starting Member

USA
18 Posts

Posted - 01 November 2006 :  11:42:53  Show Profile  Visit pianomagic's Homepage
I'm trying to incorporate a new menu bar across the top of my Snitz forum, but there seems to be a space above, and to the sides, I can't get rid of. I have 'searched' for the solution, but all I have found says to modify inc_header.asp. Unfortunately, that doesn't do the job.

You can see the problem by taking a look at the following page, and noticing the menu bar at the top.

http://www.pianomagic.com/andersonhotel/forum/

I would appreciate any suggestions.

Thanks!



Mike

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 01 November 2006 :  11:51:04  Show Profile  Visit HuwR's Homepage
well, that depends, the solution can be achieved by editing inc_header.asp, but it would be simpler for you to just add a style for BODY into your css file and set the margin-top, margin-left and margin-right to 0px.
Go to Top of Page

-gary
Development Team Member

406 Posts

Posted - 01 November 2006 :  17:19:23  Show Profile
Replace your menuFORUM.js with this.


<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


document.write('<div style="position: absolute; left: 0px; top: 0px; width: 100%; height: 31px; background-color: #26558B;">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" style="margin: 5px 10px 2px 10px;"><tr>');

// START LINKS //

document.write('<td nowrap>');
//document.write('<a href="index.asp" class="menu" onMouseover="Sound()">Home</a>');
document.write('<a href="http://www.pianomagic.com/pmsecure/introduction.asp" class="menu">Home</a>');


document.write('</td><td nowrap>');
//document.write('<a href="site_map.htm" class="menu" onMouseover="Sound()">Site Map</a>');
document.write('<a href="http://www.pianomagic.com/pmsecure/sitemap.asp" class="menu">Site Map</a>');


//document.write('</td><td nowrap>');
//document.write('<a href="lessonsBasic.asp" class="menu" onMouseover="Sound()">Lessons</a>');
//document.write('<a href="" class="menu">Overview</a>');


document.write('</td><td nowrap>');
//document.write('<a href="lessonsBasic.asp" class="menu" onMouseover="Sound()">Lessons</a>');
document.write('<a href="http://www.pianomagic.com/pmsecure/PMMO/LessonGallery.asp" class="menu">Lessons</a>');


//document.write('</td><td nowrap>');
//document.write('<a href="lessonsBasic.asp" class="menu" onMouseover="Sound()">Lessons</a>');
//document.write('<a href="http://www.pianomagic.com/pmsecure/PMMO/appendix/appendix1bindex.asp" class="menu">Appendix</a>');


document.write('</td><td nowrap>');
//document.write('<a href="services.htm" class="menu" onMouseover="Sound()">Listening Lab</a>');
document.write('<a href="http://www.pianomagic.com/pmsecure/MAIL.asp" class="menu">MAIL</a>');


document.write('</td><td nowrap>');
//document.write('<a href="../pmsecure/forum/default.asp" class="menu" onMouseover="Sound()">Forums</a>');
document.write('<a href="http://www.pianomagic.com/pmsecure/forum/forum.asp" class="menu">Forums</a>');


//document.write('</td><td nowrap>');
//document.write('<a href="lessonsBasic.asp" class="menu" onMouseover="Sound()">Lessons</a>');
//document.write('<a href="http://www.pianomagic.com/pmsecure/forum/ChatHouse/default.asp" class="menu">Chat</a>');


//document.write('</td><td nowrap>');
//document.write('<a href="services.htm" class="menu" onMouseover="Sound()">Listening Lab</a>');
//document.write('<a href="" class="menu">Audio</a>');


document.write('</td><td nowrap>');
//document.write('<a href="press.htm" class="menu" onMouseover="Sound()">Seadream Cinema</a>');
document.write('<a href="http://www.pianomagic.com/pmsecure/SeadreamCinema.asp" class="menu">Video</a>');


document.write('</td><td nowrap>');
//document.write('<a href="about.htm" class="menu" onMouseover="Sound()">Recital</a>');
document.write('<a href="http://www.pianomagic.com/pmsecure/PMMO/recitalhall/recitalhall.asp" class="menu">Recital</a>');


document.write('</td><td nowrap>');
//document.write('<a href="resources.htm" class="menu" onMouseover="Sound()">Support</a>');
document.write('<a href="http://www.pianomagic.com/pmsecure/TroubleShooting.asp" class="menu">Help</a>');


document.write('</td><td nowrap>');
//document.write('<a href="technology.htm" class="menu" onMouseover="Sound()">My Account</a>');
document.write('<a href="http://www.pianomagic.com/Login/UpdateInfo.asp" target="_new" class="menu">My Account</a>');


document.write('</td><td nowrap>');
//document.write('<a href="contact.asp" class="menu" onMouseover="Sound()">Contact</a>');
document.write('<a href="http://www.pianomagic.com/pmsecure/contact.asp" class="menu">Contact</a>');


// COPY AND PASTE THE NEXT 2 LINES TO ADD A NEW LINK //


document.write('</td><td nowrap>');
//document.write('<a href="site_map.htm" class="menu" onMouseover="Sound()">Site Map</a>');
document.write('<a href="http://www.pianomagic.com" class="menu">Exit</a>');



// END LINK BUTTONS //


document.write('</td></tr></table>');
document.write('</div><div style="width: 100%; height: 31px;"></div>');


// End -->

KawiForums.com


Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 01 November 2006 :  18:15:27  Show Profile  Visit HuwR's Homepage
quote:
Originally posted by MarshalMix

Sorry, Huw.
My screen was set to 800x600 and most of your response was off my screen.
I went back and scrolled and saw that I duplicated your response.
Again, sorry.



no worries
Go to Top of Page

pianomagic
Starting Member

USA
18 Posts

Posted - 01 November 2006 :  23:08:26  Show Profile  Visit pianomagic's Homepage
WHOA...gary, that WORKED!

I know enough to be dangerous all by myself, but you guys have saved me, again. I can't tell you how much I appreciate it, except to say...THANK YOU, THANK YOU, THANK YOU!



Mike
Go to Top of Page

-gary
Development Team Member

406 Posts

Posted - 01 November 2006 :  23:42:44  Show Profile
Replace the whole file with what I posted. You've got some old code in there with out of place cells, missing tags and some rows you don't even need.

KawiForums.com


Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.1 seconds. Powered By: Snitz Forums 2000 Version 3.4.07