• Typography Know How

    Date: 2011.02.24 | Category: Writing | Response: 0

    Our web sites are nothing without content, and most content is comprised of simple text. Many web designers neglect to pay attention to their typography, and it shows. Proper typography varies based on where the text is and what purpose it serves. Although there are no rules etched in stone, there are a few general techniques that should be followed. Although some of these tips may seem elementary, many of them are not followed.

    Headings.

    Clearly, headings should be larger, by 1 or 2 font sizes, than your body text. You may consider bold, but be cognizant of the letter width. Arial Black, for example, may create letters too fat for your taste. When using colors, be sure the colors contrast well with the background color of your site. Black and dark gray do not contrast well, while black and white (or light gray) work quite well. Sometimes, even a simple color change can create useful headings.

    Also be sure to cascade your headings. A main heading, for example, would be larger than subheadings. This effect creates a sense of emphasis and flow to the information.

    Do not italicize your headings. Italics are meant to underscore particular content, but since the text is a heading and of larger size anyway, italics are redundant and often make the text difficult to read.

    Fonts.

    The default is Times New Roman, which works fine, but many think it is boring. I have experimented with Arial, Georgia and Verdana, and have found Verdana the most readable font face available. This is a personal preference, but fonts should be restricted to the above four to ensure compatibility between all users of your web site. If your user’s browser does not support your font choice, their browser will revert to its default. Since browsers have increased support for CSS, or Cascading Style Sheets, whenever possible, use CSS to define your fonts, rather than HTML’s <font> tag. Also, be sure to keep your font sizes large enough for visitors of all ages and eyesight’s.

    Stress Styles.

    Avoid using all capital letters within your text, as it makes it difficult to read and implies you are shouting at the reader.

    To stress words within your body text, decide on a format and stick with it. Some choose bold, while others choose italics or underline. My personal favorite is italics, but any of these can work well. Be careful when using underline, however, as it can be mistaken for a link. In addition, do not overuse these stress styles.

    Entire body text should not be bold. Bold, like italics, is used to emphasis words, and usually an entire body of copy should speak for itself in regularly styled text. I like to use CSS to space my body text out a little to increase readability.

    Article written by Lee

  • Why Have More Than One Index Page?

    Date: 2011.02.21 | Category: Search Engine Optimization | Response: 0

    The first thing you should do when you start designing a web site is to create an index page. You would think that this is a basic knowledge in web design, but I still encounter web sites that are lacking in this.

    If there’s no index page, and if the web host server has not set a directory access limitation, any visitor will see a directory listing of all the images, html pages, CGI-scripts, and other files in the directory. Everything will then be accessible for reading and downloading, and the CGI-scripts will also be executable!

    So, for a basic security it is most important to have an index page in all your directories, whether they contain only pictures or garbage. In the directories that are private or containing things other then HTML pages, the index pages need only to print out a text like “access forbidden” or something in that spirit. In the directories containing one or more HTML pages, one of the pages must be named “index.html,” whether it is a page with real content or for security reason.

    If you have a directory specifically for CGI-scripts, it will run a higher security risk, because most of the times these directories are called CGI-bin, or a variant of that, and anyone who is after your scripts is undoubtedly familiar with this and can access the directory by typing the directory name in the targeted site’s URL, if it’s not properly protected by an index page. Imagine the horror when someone uses your mailing list program to Spam all your subscribers or decides to sell your email list. It’s quite a big business in selling email lists. A large email list is worth thousands of US dollars nowadays.

    I could have done all these things if I had any bad intentions when I accidentally bumped into an unprotected site. Actually, I bumped into two unprotected, huge subscribers lists in the last two months, which prompted me to write this article. But of course, I did the proper thing and emailed the web sites’ webmasters about their oversight. You would think that these professional looking and operating web sites with email lists of respectively 8,000 and 15,000 subscribers would know better.

    Even if your site is made by a web design company, make sure all your directories are protected. In fact, one of the two unfortunate web sites I uncovered is a web design company. So, check out your site for this unnecessary security gap, right now.

    Article written by Lee

  • Cascading Style Sheet Basics

    Date: 2011.02.21 | Category: WebDesign | Response: 0

    CSS (Cascading Style Sheets) have been around for a while now, and act as a complement to plain old HTML files.

    Style sheets allow a developer to separate HTML code from formatting rules and styles. It seems like many HTML beginners’ under-estimate the power and flexibility of the style sheet. In this article, I’m going to describe what cascading style sheets are, their benefits, and two ways to implement them.

    Cascading What’s?

    They’re what chalk is to cheese, what ice-cream is to Jell-O they complement HTML and allow us to define the style (look and feel) for our entire site in just one file!

    They get their name from the fact that each different style declaration can be “cascaded” under the one above it, forming a parent-child relationship between the styles.

    They were quickly standardized, and both Internet Explorer and Netscape built their latest browser releases to match the CSS standard (or, to match it as closely as they could).

    So, you’re still wondering what a style sheet is? A style sheet is a free-flowing document that can either be referenced by, or included into a HTML document (Kind of like using SSI to call a file but not, if that makes sense). Style sheets use blocks of formatted code to define styles for existing HTML elements, or new styles, called ‘classes’.

    Style sheets can be used to change the height of some text, to change the background color of a page, to set the default border color of a table the list goes on and on. Put simply though, style sheets are used to set the formatting, color scheme and style of an HTML page.

    Style sheets should really be used instead of the standard , < b >, < i > and < u > tags because:

    One style sheet can be referenced from many pages, meaning that each file is kept to a minimum size and only requires only extra line to load the external style sheet file

    If you ever need to change any part of your sites look/feel, it can be done quickly and only needs to be done in one place: the style sheet and furthermore, it is done globally.

    With cascading style sheets, there are many page attributes that simply cannot be set without them: individual tags can have different background colors, borders, indents, shadows, etc.

    Style sheets can either be inline (included as part of a HTML document), or, referenced externally (Contained in a separate file and referenced from the HTML document). Inline style sheets are contained wholly within a HTML document and will only change the look and layout of that HTML file.

    Open your favorite text editor and enter the following code. Save the file as styles.html and open it in your browser:

    Cascading Style Sheet Example.

    h1
    {
    color: #636594;
    font-family: Verdana;
    size: 18pt;
    }

    This is one big H1 tag!

    When you fire up your browser, you should see the text “This is one big H1 tag!” in a large, blue Verdana font face.

    Let’s step through the style code step by step. Firstly, we have a pretty standard HTML header. The page starts with the tag followed by the tag. Next, we use a standard tag to set the title of the page we are working with.

    Notice, though, that before the tag is closed, we have our tag, its contents, and then the closing tag.

    h1
    {
    color: #636594;
    font-family: Verdana;
    size: 18pt;
    }

    When you add the style sheet code inline (as part of the HTML document), it must be bound by and tags respectively. Our example is working with the tag. We are changing three attributes of the ’s style: the text color (color), the font that any tags on the page will be displayed in (font-family), and lastly, the size of the font (size).

    The code between the { and } are known as the attributes. Our sample code has three. Try changing the hexadecimal value of the color attribute to #A00808 and then save and refresh the page. You should see the same text, just colored red instead of blue.

    An Example Of An External Style Sheet.

    External style sheets are similar to internal style sheets, however, they are stripped of the and tags, and need to be referenced from another HTML file to be used.

    Create a new file called “whatever.css” and enter the following code into it:

    h1
    {
    color: #a00808;
    font-family: Verdana;
    size: 18pt
    }

    Next, create a HTML file and name it test.html. Enter the following code into test.html:

    External Style Sheet Reference Example.

    This is one big H1 tag!

    As mentioned above, you can see that the actual code in whatever.css is exactly the same as it was in the inline example. In our HTML file, we simply place a tag in the section of our page. The rel=”stylesheet” attribute tells the browser that the link to the external file is a style sheet. The type=”text/css” attribute tells the browser that whatever.css is a text file containing CSS (cascading style sheet) declarations. Lastly, the href=”whatever.css” attribute tells the browser that the actual file we want to load is whatever.css.

    Conclusion.

    Well, there you have it, a quick look at style sheets and how to implement both an inline and external version. Checkout the links below if you’ve never worked with cascading style sheets before. You will be surprised at some of the things you can do with them!

    Article written by Lee.

  • Building A Surfer Trap – Stage 1

    Date: 2011.02.21 | Category: Traffic | Response: 0

    The last 2 weeks I have had a LOT of webmasters email and ICQ me regarding traffic and, not getting any sales.

    So, I thought it would be a good idea to make a step by step tutorial on building your own surfer trap.

    Now these are some of the arguments I have heard why people haven’t already built one over the last few weeks…

    * To complicated to follow.
    * I want surfers returning to my site.
    * Don’t have the time.

    The first two however seem to be the ones that I hear over and over again.

    First of all, a surfer trap IS NOT complicated, in fact, it is probably one of, if not THE easiest type of site to build.

    Secondly, Why get a surfer visiting your site over and over again if they are not paying for trial memberships? All you are doing is wasting your bandwidth.

    Thirdly, A surfer trap can be built over a period of time, my very first trap was built within 1 hour my next was built in a day and my next one was built in a week.

    So onto the start of building our surfer trap…

    The first thing that I want you to do is to look at the Multi-Site FPA’s that ARS in the marketing section and choose ONE of them.

    Download it, optimize the keywords on the FPA, make sure you add meta tags, titles descriptions and Alt tags on all images.

    Once you have done this, you now need to search through ALL of the single site FPA’s and download and optimize one for each of the ARS sites that you have on your Multi-Site FPA. (Even the gay sites!)

    This should take you 2-5 minutes for EACH FPA, any longer than that and you are doing TOO much work!

    Once you have all of the single FPA’s downloaded, optimized and uploaded onto your server that is the first stage completed.

    Article written by Lee

  • Redirecting To A Different Page Using JavaScrip

    Date: 2011.02.24 | Category: Scripts | Response: 0

    There are times when a simple JavaScript redirection from one page to another can come in handy and, the following JavaScripting will enable you to do this.

    When a page contains this javascript, it will be redirected to another page that you specify in the “window.location=”. You can change the number of refresh seconds by changing the “move()’,1000 to the number of seconds you’d like.

    Example:

    1000 = 1 second
    2000 = 2 seconds
    3000 = 3 seconds

    Place this JavaScript code between the <head> and </head> tags

    <script language=”JavaScript”>
    <!–hide from old browsers
    var time = null
    function move() {
    window.location = ‘http://www.yourdomain.com’
    }
    //–>
    </script>

    Place this JavaScript code in your <body> tag

    <body onload=”timer=setTimeout(‘move()’,1000)”>

    You should now have a page that will redirect to a new url when it loads in the surfers browser window.

    Article written by Lee

  • Thinking Of Starting An Adult Website In The UK?

    Date: 2011.02.24 | Category: General | Response: 0

    We all know that there are many foreign / international adult webmasters and there are some very well known ones based in England however, before you start building your online empire what are the legalities regarding the type of content you can and cant use on your adult pornographic sites?

    To be honest with you, there are no ‘defined’ laws in England (At the time of writing this article) regarding the use of online media to promote adult activities however, it is a commonly held belief that as long as you stay to the same standard as what most ‘top shelf magazines’ or ‘R18 Videos’ have in them you shouldn’t go far wrong.

    So what are these standards? That’s the information that I am about to give you.

    Content that IS NOT acceptable.

    1) Any material which is in breach of the criminal law.

    2) Material (including dialogue) likely to encourage an interest in abusive sexual activity (e.g., pedophilia, incest) which may include depictions involving adults role-playing as non-adults.

    3) The portrayal of any sexual activity, whether real or simulated, which involves lack of consent.

    4) The infliction of pain or physical harm, real or (in a sexual context) simulated. Some allowance may be made for mild consensual activity.

    5) Any sexual threats or humiliation which do not form part of a clearly consenting role-playing game.

    6) The use of any form of physical restraint which prevents participants from withdrawing consent, for example, ball gags.

    7) Penetration by any object likely to cause actual harm or associated with violence.

    8) Activity which is degrading or dehumanizing (examples include the portrayal of bestiality, necrophilia, defecation, urolagnia).

    As you can see from the above, there ARE very specific guidelines regarding water sports, animality and, some of the more ‘out there’ fetishes.

    Now you know what you cant use on your adult sites, lets take a look at the list of sexual activities that you can use. Its no surprise that the list of what you can use is considerably shorter.

    Content that MAY BE acceptable.

    1) Aroused genitalia.

    2) Masturbation.

    3) Oral-genital contact including kissing, licking and sucking.

    4) Penetration by finger, penis, tongue, vibrator or dildo.

    5) Non-harmful fetish material.

    6) Group sexual activity.

    7) Ejaculation and semen.

    It also worth noting that the above guidelines are not distinguished between heterosexual or homosexual activities.

    So, that’s the low down on what the current status of affairs are with regards to the use of adult content on websites in England and Wales. Actually, that’s not to bad just ensure that you stay within these guidelines and, more importantly, that you do consult a solicitor before commencing any form of adult business after all, that’s what they are there for, to give you SOUND legal advice instead of basic ‘guidelines’.

    Article written by Lee

  • Converting Chinese Adult Traffic – The Niche Paysites That Work

    Date: 2011.02.21 | Category: Traffic | Response: 0

    Converting Chinese Adult Traffic – The Niche Paysites That Work.

    To date we have looked at most of the types of country specific traffic available to webmasters every day and, more importantly, which niches they convert on. In this article we will finish up our look at the foreign traffic and how profitable it can be with the final main country on the net – China.

    Chinese Adult Surfers – Quick Analysis.

    As with Japanese traffic, most webmasters seem to think that Chinese speaking adult surfers are pretty worthless when it comes to buying porn memberships and this is true – If you do not know what niches to offer your Chinese surfers that said, we found some interesting results given the three (3) month test we had on our Chinese traffic and, the results we observed might just make you change your mind about sending the Chinese surfers you get to your sites off to traffic trades.

    Chinese Porn Surfers – The Niches.

    Because we knew relatively little about the Chinese traffic we had on our sites we decided that, rather send it to a specific language hub site we would send it to our main hub page and, allow the Chinese surfers to filter themselves through to the sites that interested them on their own, to our surprise, only 40% of the traffic we knew was Chinese chose to filter itself to a Chinese specific language hub site, the remainder, choosing to go through our main English hub site.

    Fetish.

    Across all of the niches we offered the surfers, the Fetish niche was the one that converted most consistently month after month and, more than converted, actually retained members once they had signed up to the paysites.

    Gay.

    Unlike the traffic we had that was Japanese a lot of the Chinese traffic that hit our site decided to visit the Gay niche paysites we had to offer them and, there was less than 10% difference between the Fetish and Gay signups we observed month after month. Quite a difference when compared to surfers from Japan and, a pleasant one at that.

    Amateur.

    Specifically teen amateur niche sites or, at least sites that had amateur looking teen modes on the tours also did well on our Chinese traffic however, the conversion ratios for the recurring programs didn’t do as well as what we had expected with most memberships being cancelled within 2 months. Non the less, the Chinese surfers did join and most of them re-billed in excess of 1 month before leaving the site.

    Teen.

    As mentioned above, it would appear that Chinese porn surfers are looking for teen niches again though, the teen paysites we used featured amateur looking teens prominently on the pages so whether this was a choice on the surfers part to join the teen sites or, because we only offered amateur looking teen paysites isn’t known.

    Asian.

    Unlike Japanese surfers, Chinese surfers also joined the Asian niches that were offered up to them and, surprisingly enough, we noticed more signups to English Asian sites than localized Chinese pay sites.

    Chinese Adult Surfers – The Results.

    Overall we were very impressed with how the Chinese traffic we had flowing through our sites both acted and, converted on the sites that we offered them to join, especially since the Japanese traffic we had didn’t seem to like the gay niche sites yet Chinese traffic worked wonderfully on exactly the same gay niche pay sites.

    Across the board I think a revisit of Chinese traffic is needed with more options on our part when it comes to the teen and amateur niches especially just to see if the results we experienced thus far were unique or, are truly indicative of how the Chinese surfer navigates and joins pay sites.

    Article written by Lee

  • Gay Industry Networking – The Gay Boards

    Date: 2011.02.22 | Category: Promotion | Response: 0

    Gay Industry Networking – The Gay Boards.

    With so many ways for webmasters marketing straight sites in the adult industry to network I started to look at the various alternatives available to those webmasters who market gay sites to network and, although there are a few different ones about, they still seem to be few and far between.

    So What Boards Are There For Gay Webmasters?

    Presently, to my knowledge there are four dedicated gay boards that webmasters can utilize for networking purposes in the adult industry with several straight orientated resource sites having a gay board also these are as follows:

    The Gay Boards:

    Rock Me Hard
    Triple X Gay
    Gay Webmaster Chat
    Gay Wide Webmasters

    The Straight Sites With Gay Boards:

    Ynot Gay Board
    Xbiz Gay Board

    Obviously my favorite is The Gay Board at Gay Wide Webmasters but i am slightly biased towards that seeing as its one that we own privately however, the other boards are almost certainly worth a visit in addition to the GWW community forums.

    So what do these gay boards offer those marketing to the gay surfer that the straight boards cant? Simply put, it can offer you a place to network without fear of ridicule from your colleagues and peers in addition you will find that a lot of these gay boards have a wealth of information about the gay market being posted on them on an almost daily basis.

    It is also worth mentioning however that just with the numerous straight orientated message boards, the gay boards do have their own individual feel to them, for example, Rock Me Hard is what I would personally classify as a ‘fun’ board and Shelmal does a great job keeping the spirit of the board going likewise, Gay Webmaster Chat is more a board geared towards webmasters who operate traffic sites such as TGP’s and Link Lists which becomes apparent after reading a few threads. Gay Wide Webmasters is more a board with a wide reach but, primarily, it is a business orientated gay webmaster community and Triple X Gay, because it is fairly new is still, imho, trying to identify the direction it wants to take but non the less, a lot of the forum members posting there also post on GWW.

    The Gay Board – An Overview.

    When all is said and done, no matter whether you are gay, straight, black, white or any other demographic, focusing your attention to one type of board can become counter productive after a while, I mean how often can you hear from the same people over and over again before being given the same information again and again? Diversify your posting activities to include some of the gay market community forums and at the same time, you will also diversify your business knowledge which, im sure you will agree, is good for everyone, especially you and your bank account.

    Article written by Lee

  • Unspoken Secrets

    Date: 2011.02.24 | Category: General | Response: 0

    here is a belief among new webmasters that there is a set of golden rules among those of us whom have been at this business for many years to making money well guess what, these are those unspoken secrets….

    Secret #1.

    There are no secrets to becoming an adult webmaster. One of the most common reasons why so many new webmasters give up in this business is because they hear about the money that the big guys make, submit two TGP galleries to The Hun, get a $200 hosting bill and no signups. They then figure that the affiliate they are using is rubbish and then spend the next 2 months surfing the Net looking for the “be all and end all” of affiliate programs which is going to net them $2 million within the next 6 months. The fact of the matter is, that genie in the lamp you are looking for doesn’t exist. It all comes down to hard work, perseverance and common sense this is a business venture you have started like it or not and, it needs to be treated as one.

    Secret #2

    Don’t give up. You need to treat what your doing as a business. Of course, you can have fun with it but, at the same time you need to be making continual business plans for your development in much the same way as if you were self employed. Which, of course as soon as you start to make some money you will be.

    Secret #3

    Stay focused. There are a million and one ways to make money in the industry. You could build free sites, TGP galleries, AVS sites, pay sites, search engine pages, the list goes on. There are many different avenues to drive traffic. The key is to try everything. Eventually you will find the one venue that your are very good at. Continue with this until you know this in your sleep – work it so often and well that you master it. One other thing to remember, it wont make you money overnight, if you think it will, your starting out for the wrong reasons, putting it simply, Adult web mastering isn’t for you.

    Secret #4

    Build it and, it (And they) will come, don’t spend time worrying about your keywords, meta tags, the amount of images you are using, just because someone tells you this is what is required of your sites. Just build a site or gallery submit it, forget about it and get started on building your next, and the next, and the next site after that. Just keep on moving forward, if you forgot to do something on one of your sites don’t worry, add it to the next site that you build.

    Secret #5

    Start to network. Other webmasters are great for bouncing new ideas off, a group of webmasters who start at the same time all communicating with each other are going to develop more than a sole webmaster on their own. Networking is a big part of any successful webmasters daily routine. Make the most of the people you meet on the boards or aim or icq, it will benefit you long term.

    Secret #6

    This one you will probably hear day in, day out for the rest of your business life. “It’s too late for newbies to make money” I am sorry to be the one to tell you this but, this is rubbish. As long as you follow the basic rules above and work at it, you can and will make money in this still thriving industry.

    Now you have heard the “secrets” you have wanted to know its up to you to put them to good use.

    Article written by Lee

  • GEO::IP – What Is It?

    Date: 2011.02.22 | Category: General, Hosting | Response: 0

    As more and more webmasters investigate the international market place to expand their online businesses I thought it would be prudent to take a look at one of the more important modules of Apache and, just how this module can help webmasters to monetize their international traffic. What is this module? GEO::IP.

    Geo I.p – The Basics.

    GEO::IP is an Apache module which is able to recognize countries by specific I.P blocks. GEO::IP in itself is, in effect a database of the current i.p addresses in use on the internet across the globe. When used in conjunction with various scripting languages, Perl, Php, Etc the Apache GEO::IP module can assist online businesses with the following:

    Detecting credit card fraud.
    Automatically select the geographically closest mirror.
    Analyzing your web server logs to determine the countries of your visitors.

    What this means to the webmaster is that they can now market their sites to a specific language or, country in addition to either redirecting or, refusing other countries / languages access to their online sites.

    GEO::IP Module – Where To Find It.

    The GEO::IP module is available from several sources online in either paid or, free forms. The most up-to-date and professional form of the GEO::IP module can be found on the Maxmind website ( http://www.maxmind.com ).

    Once you have the GEO::IP module you should either ask your host to, or, install it yourself on your Apache based web server.

    Geo I.p – Different Modules.

    In addition to the simplistic ‘country i.p’ based detection, there is also another more complex GEO::IP module, this module is often referred to as ‘I.p to Location’ which, in simplistic terms means that you can target specific cities of the world hence, if you want to offer a service to surfers in Miami, you are able to redirect your Miami surfers to a page with content of specific interest to them.

    Redirecting Traffic.

    Geo i.p is the basis behind most of the international traffic redirection systems available for webmasters to use in order to monetize their global traffic more efficiently, whether those systems are paid, free, subscription based or, otherwise they will ALL use the fundamental basics of the GEO::IP module.

    Through the use of the geoip module you will be able to maximize and filter the traffic sources you currently have and, decide on whether you send your surfers to a Pay site, a dialer or, a traffic trade.

    Scripting – Putting GEO::IP To Work.

    Many programming firms are now looking at the global market place in addition to webmasters as they now have the ability to offer their clients a wider product base from country specific banner displays to multi-lingual tours, programmers can develop new ways to enable webmasters to profit from their traffic unlike ever before. One such company is Geo Scripting ( http://www.geoscripting.com ).

    GEO::IP – Overview.

    All in all the Geo i.p Apache module is going to become more and more prominent in the industry, sponsors are already starting to use country specific redirects on their affiliates traffic base and, individual webmasters are beginning to capitalize on this module through redirecting their own traffic to the sponsors that offer them multi-lingual paysites. When all is said and done, I am all for anything that can better assist webmasters in monetizing their global revenue streams especially as in the last 4 years I have been online it would only seem to be the last 2 months when this untapped source of income has come into the forefront of the adult industry.

    Article written by Le

Premium Sponsors















Categories

Site Links