Using a Spacer.gif file for Layouts

Sometimes you need to space thing on your site and don’t want to mess around with the CSS coding to accomplish the proper space requirement. In the past I have used line breaks to create vertical spacing. I have also used ascii spaces to create horizontal spacing.

No more, now I use a 1 pixel by 1 pixel transparent .gif file to do this work. Open your graphics editor and create a new image. Make the image a 1px x 1px file and leave it blank. When you start setting up a new file, be sure to have the background be transparent. Save the file as spacer.gif and upload it to your server.

When you need a vertical spacing then place the link to the file in your document and use the Height and width parameters to create the space.  For example if you need vertical spacing it would look like this:

<img src="http://www.you.com/spacer.gif" alt="Spacer" height="400" width="5" />

Need a bit of horizontal spacing:

<img src="http://www.you.com/spacer.gif" alt="Spacer" height="1" width="50" />

Try it out.

Steve

Setting up the Much Maligned Table

Here is the CSS parameters for setting up a simple table. I don’t know why they are disliked, especially when intended to keep everything tidy on a web page or blog post.

If you have more than one table, just add a class name, in this case .black. Then the table would start like this: <table class=”black”>

table.black{
margin: 10px 8px 10px 8px;
padding: 10px 8px 10px 8px;
table-layout: automatic;
text-align: Left;
font-family: Times New Roman;
font-size: 20px;
line-height: 110%;
word-spacing: 1px;
color: #FFEFC9;
}

That was fairly straightforward and are used on my tutorial here:
Click here to look at the page.

Then there is a need to use them in blog posts to keep everything tidy.

Like Here

If you have Excel, get a copy of my HTML generator(right sidebar, below). This is real handy if you use a shopping cart. It can generate a simple table like this one without a cart entry, or one that employs a cart.



Click image to enlarge.
Copper Pendant
Item # sample, $45.00

Steve

50 CSS Techniques

Here is an interesting site:

Click Here

Steve

Change of Plan, No CPA Tutorial, and Why

I finally pulled everything together and funded my account at Media Traffic. As of this post I have had 2744 clicks on my keywords and URLs that I picked, and not one person actually completed the action. That is a ROI of 0.00%. My campaigns ranged from submitting an email address for a chance to win a $500 grocery card to links for selling houses online. Nada.

My current campaign is for Lunarpages web hosting. I simplified it up and have just 4 keyword phrases (Web Hosting, website hosting, Web host and domain hosting). Anyone in their network entering those keywords, in that order would get a pop-under window for this campaign:
Here is the Campaign

This campaign has had over 1000 clicks and no one made a purchase. I have limited the campaign to $10 per day, so I’m letting it run a few more days. My enthusiasm has waned. Off to another project.

At the end of my experiment, I had over 6000 clicks, based upon keyword searches, and not one sale. I spent $94 with no luck. My refund on the remainder of my deposit was returned yesterday.

Steve

I Like My Links Blue and Underlined

I like my links in blue and underlined. Below is the CSS entries that make this happen. Inside a WordPress blog you have to go to the Appearance section and click on Editor. This will open the CSS editor of your theme. Then you have to find the correct section and look for the “a” tag, since links start with <a href=”http://.

I found it and made it the color I wanted, the #1E0ECF color, added the underline and then made the Hover color slightly darker blue to make it look like a link.

.contents a{
color: #1E0ECF;
text-decoration:underline;
font-size:18px;
}

.contents a:hover{
color: #190CAA;
text-decoration:underline;
font-size:18px;
}

The Reference site

This would also apply if it were a part of a CSS in a traditional HTML page.

Steve

CPA Marketing Tutorial Coming Soon

Watch the video on the sales page of Placement Intelligence:
Click Here!

I’m taking a course on Cost Per Action marketing. It is a challenge to get through, but I will be breaking it down into more manageable segments. I have another 20 hours of video to go through, but there is some great potential here for income. It takes about $200 to start with an ad campaign, but it can be turned off quickly if it is not positive in cash flow. The cost of clicks is just pennies but the lead generations can be a buck or two for the clicker filling out an email address for a free Pizza card, or $20 for a one page form for credit checks.

There are a lot of TV ads running now regarding identity theft and credit checking. I want to be able to ride some of those campaigns.

One of the tools takes key words generated from the URL of a target campaign site(from Google’s free keyword generator) and locates hundreds of URLs that can be targeted for a CPA campaign. That tool is called Placement Intelligence.

Watch the video on the sales page of Placement Intelligence:
Click Here!

I’m excited about this.

Later,
Steve

53 Cascading Style Sheet Techniques

You need to check out an interesting article, “53 CSS-Techniques You Couldn’t Live Without”
By Vitaly Friedman
Visit this Turorial

Cascading Style Sheets are a bit tough for beginners to get their heads around, but is a must-learn. Start with simple controls and springboard from there.

The Reference site

Steve

Some Very Basic HTML Every Web Site Owner Should Know

If you have a blog as a web site or use a site builder, there is some basic HTML you should learn. This is a nice article at a web site that I find very useful. Sign up for their freebies and they will email you notifications for their webinars. If you can’t make the webinars, they will provide a video capture a day or two later to view on demand.

Lots of great resources here.

Hubspot Article

Steve

Getting Started With HTML is Intimidating, The Basics:

From the Lunarpages monthly newsletter:   They wanted to share with their customers and clients all the different ways they can use their web hosting accounts.  Often lost in all the geeky talk, is the fact that there are lots of people out there who may not be HTML experts.  There is nothing wrong with that, and in fact they would love to help.  That is what inspired them to create this six part tutorial on learning the basics about the hypertext markup language (HTML for short).

Contents:

Basics of HTML

Parts of a Web Page, Explained

Web Site Navigation

Body Tag Modifiers

Tutorial #5 – HTML Formatting Tags

Tutorial #6 – More HTML Formatting Tags

Click Here for the Article

Steve

Get My Tutorial Then Create Your Blog

The Tutorial to the right is designed to show you how to use cPanel inside Lunarpages to set up your own WordPress Blog. The tutorial goes through the steps to install WordPress at your Lunarpages hosted site, Actually any host that uses cPanel.

Click here to see how easy it is to install a Blog as a Website.

Steve

214392