Polsonmayor.com

Posted in Mayor, News, Random on November 28th, 2010 by mbrandt29

As the race for mayor of Polson, MT heats up, the People for the Support of Michael Brandt for Mayor have decided to acquire PolsonMayor.com. Good luck to all of the candidates.

MonsterWebsiteDevelopment.Com

Posted in News on November 24th, 2010 by mbrandt29

Mikesdocuments.com is proud to announce the official branding of the Website Development portion of the company, MonsterWebsiteDevelopment.com.

Think that is too long? Well, maybe you are right, so MonsterWebDev.com will work too!

New Footer

Posted in Site Updates on November 11th, 2010 by mbrandt29

Upon the recommendation of a few people, I added a new footer to the bottom of the page [check that thing out!]. It even uses some fancy css text shadowing. Hope you like it.

Lucy Response

Posted in News, Random, Social Media on November 8th, 2010 by mbrandt29

Change the mouse pointer

Posted in Cool Code Of The Day on November 4th, 2010 by mbrandt29

To change the cursor from an arrow to a pointer, for example, use the following code:

.whatever {
cursor:pointer;
}

To call attention to a clickable area.

Scroll bar making pages move around?

Posted in Cool Code Of The Day on November 3rd, 2010 by mbrandt29

In instances where some pages on a site need a vertical scroll bar, and others do not, pages will move around based on this extra width on the page (10 pixels or so). In order to correct the issue, and make the page static, give all pages a scroll bar, whether they need it or not.

html {
overflow-y: scroll;
}