Max Blog Press Banner Ads

Easy Banners with Max Blog Press Banner Ads

Statistics have long shown that….

“Rotating your advertisement banners can defeat banner blindness and increases CTR.”

But..

One of the issue about banner advertisement on WordPress blog is the banner ad management.

Normally adding banner ads will need you to edit your WordPress theme, mess with lots of codes and even then you won’t have the result as you want.

This is pretty tedious and time consuming if you have to go through all the codes just to add some banners.
Wouldn’t it be great if:

  • You had the power to easily place your banner ads in any position you want to on your blog?
  • You could track your banners, find out how good they really are doing?
  • You could rotate your banners in multiple spots and transform your WordPress blog into advertising gold.

Above all what if you didn’t even have to worry about editing your WordPress theme to do all of this?

I have Max Banner Ads on ALL my blogs. Saves me a ton of time by not having to mess with a bunch of code. Even though I do KNOW HOW to do it, Max Banner Ads just eliminates the need for ANYONE to be a WP programming expert. Get it now at Max Blog Press

Create Unusual Effects with CSS and Opacity


I created this unusual graphic effect in only a couple of minutes, using a background image I already had on my computer. The topmost box is NOT a graphic but is styled with special background color, and special border styles, heights, and colors – to make it look like a picture frame.

Stop and smell the roses

Here’s how you do it:

  • Use these three “class” rules

div.outerbox
{
margin:0 auto;
width:500px;
height:250px;
background:url(img/roses.jpg) no-repeat;
border:4px solid black;
border-color:#eee #aaa #ccc #ddd;
}

div.innerbox
{
width:400px;
height:180px;
margin:30px 50px;
background-color:#fff;
border:10px solid black;
border-color:#eee #aaa #ccc #ddd;
/* for IE */
filter:alpha(opacity=60);
/* CSS3 standard */
opacity:0.6;
}

div.innerbox h1
{
margin:30px 20px;
font-weight:bold;
color:#000;
text-align:center;
}
Continue reading