For the Bath School Department teachers to discuss the use of technology and its integration into the curriculum.

Friday, October 15, 2010

Safer Site

To remove the nav bar on blogger, before this line (there will be no spaces between each of these characters...blogger just won't put this up correctly) :

> < / b : skin >


insert following code in your CSS part of template:

#navbar-iframe {
height:0px;
visibility:hidden;
display:none
}

After removing the navbar you may need to get rid of space at the top. Put this in CSS part of your template:

body
{
margin-top:0px;
}

If this doesn't remove the space where the bar was try:

body
{
margin-top:0px;
position: relative;
top: -50px;
}