Everything you have been looking for and more!!
22 May
30 Apr
Adding affiliate tracking software to your site is one of the most effective ways to achieve more sales and more traffic! iDev affiliate software installs in just minutes and through the use of Smarty Templates, it easily integrates into your existing website.
Any suggestions, ideas? Feel free to comment on this article!
25 Apr
Need Traffic for Your Website?
Is your Search Campaign just skimming the surface? Reach deep into the internet with Search 123.
Submit your website to Excite.com
Any suggestions, ideas? Feel free to comment on this article!
24 Apr
![]()
ProStores is ideal for individuals and businesses who want to reach new customers, grow online sales, and accelerate business growth.
Start building your web store today! Online checklists guide you through store design, setup, and maintaining your store. View this short interactive tour to see all of the powerful features in ProStores.
Any suggestions, ideas? Feel free to comment on this article!
18 Apr
The best areas to place advertising can vary from page to page and it depends on the type of content and layout you have. But one element that all websites have in common is a header and it’s the first thing that visitors usually see. For that reason, it’s a great spot to place advertisements.
If you’re following the new trend to lay out your site with CSS, you’re not using tables. So how do you position the ad in a specific area? Let’s learn how to absolutely position an ad!
Let’s say we have a header image that’s 800 pixels wide and 140 pixels tall. (The following image isn’t that size as you can tell but let’s pretend!)
We’ll place it in a div called header and make it the background image. The CSS for that would be as follows:
#header {
height: 140px;
width: 800px;
background-image: url(images/header.gif);
position: relative;
}
The XHTML for that would be as follows:
<div id=”header”></div>
Let’s say we have an ad that’s 234 pixels wide and 60 pixels tall. I want to place it in the bottom left corner of the header. I don’t want it to be right against the border so I want a bit of space in between the left and bottom sides.
We’ll place the advertisement in a div called ad. The CSS for that would be as follows:
#ad {
height: 60px;
width: 234px;
position: absolute;
left: 10px;
bottom: 10px;
}
The XHTML for that would be as follows:
<div id=”ad”></div>
Now let’s bring it all together by placing the ad inside the header:
<div id=”header”>
<div id=”ad”></div>
</div>
So how does it work? Good question. Let me point out the details of the CSS that makes it work:
#header {
height: 140px;
width: 800px;
background-image: url(images/header.gif);
position: relative;
}
#ad {
height: 60px;
width: 234px;
position: absolute;
left: 10px;
bottom: 10px;
}
Notice that the ad’s position is set to absolute and the header’s position is set to relative. What that means is that we want the ad to be absolutely positioned relative to where the header is.
We said the header was 800 pixels wide and 140 pixels tall. That means that the width of the header starts at 0 pixels and ends at 800 pixels. The height starts at 0 pixels and ends at 140 pixels.
Because we set the ad’s position of left and bottom to 10 pixels, the ad is positioned 10 pixels from the left and 10 pixels from the bottom of the header! Need a live example, check out the ad inside the header on this page!
NOTE: The options you have to position are top, right, bottom, and left. So if you wanted to position the ad in the top left, it would be top: 10px and left: 10px.
Go have some fun absolute positioning!
Any suggestions, ideas? Feel free to comment on this article!
24 Mar
Entrepreneurship is quickly becoming one of the most desired and sought after career paths. This list is a compilation of the best web resources for aspiring entrepreneurs and small business owners.
Any suggestions, ideas? Feel free to comment on this article!
12 Mar
Resources webmasters can use to improve their optimization techniques both onsite and offsite.
Bad Behavior has blocked 77 access attempts in the last 7 days.