• Using SSI For Auto Updates

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    We all realize the benefits of being able to save time when building sites so, I got into thinking, how can I make my sites look as if they are continually updated without the need to go in and update them manually? Enter the world of SSI.

    SSI is actually a nifty little tool, not only can you include files from a central location but, you can include them at specific times of the day, days of the week or even months of the year, very handy indeed if you are building any type of site that needs updating periodically.

    Once the main burst of work has been completed you can pretty much use the same files over and over again to help you out.

    So onto the auto updating SSI, the following SSI coding will enable you to update a page or pages based on which day of the month it is. It will check the day the page has been accessed and display the relevant information again, this is a handy thing to have should your sponsor be running a promotion over several days, all you need to do is update a selection of SSI files and all of your sites are updated instantly.

    <!–#config timefmt=”%d”–>
    <!–#include virtual=”/yourdirectory/$DATE_LOCAL.txt”–>

    What you need to do is create 31 text files named 01.txt right the way through to 31.txt take the SSI call above and edit the location of the SSI files on your server, you may like to have a central folder named /SSI/ for this purpose so the location would be changed to /domain.com/SSI/$DATE_LOCAL.txt

    I the 31 files you created you could have a table ad with eight of your sponsors links, an article in each one or even just a simple text link, anything that you may want to update can be included in these files.

    As I mentioned above you can base the time, date and even month of rotation to whatever you like to alter how the files are rotated and ultimately viewed on the web you should change the %d in the timefmt field to one of the following:

    %d : Day of the month requires 31 files named 01.txt to 31.txt
    %w : Day of the week requires 7 files named 0.txt to 6.txt
    %j : Day of the year requires 365 files named 001.txt to 365.txt
    %u : The week of the year requires 52 files named 00.txt to 53.txt
    %m : The month of the year requires 12 files named 01.txt to 12.txt
    %H : Hour of the day requires 24 files named 00.txt to 23.txt
    %M : Minute of the hour requires 60 files named 00.txt to 59.txt

    As you can see from the above there really are no limitations to the uses of updating using SSI and, apart fro the relative ease of use and the time saved using them should one sponsor not be converting for you all you need to do to swap sponsors is alter your central set of SSI files and you have instantly changed sponsors over all of your sites.

    Article written by Lee

  • JavaScript Know How

    Date: 2011.02.22 | Category: Scripts | Response: 0

    JavaScript can be one of the most useful additions to any web page. It comes packaged as standard in Microsoft’s Internet Explorer and, Netscape Navigator and allows webmasters to perform field validations, mouse-over’s, pop ups and a whole entourage of other nifty little features on our sites.

    In this article we will show you how to:

    – Display the browser name and version number
    – Change the text in the status bar of the browser
    – Use an input box to get text from the user
    – Use a message box to display text to the user
    – Change the title of the browser window

    Before that, however, we need to know how to setup our web page so that it can run the JavaScript. JavaScript code is inserted between opening and closing script tags: <script> and </script>, like this:

    <script language=”JavaScript”>

    –> JavaScript code goes here <–

    </script>

    These script tags can be placed anywhere on the page, however, it’s common practice to place them between the <head>and </head> tags. A basic HTML page that contains some JavaScript looks like this:

    <html>
    <head>
    <title> My Test Page </title>
    <script language=”JavaScript”>

    function testfunc()
    {
    var x = 1;
    }

    </script>
    </head>
    <body>
    <h1>Hello</h1>
    </body>
    </html>

    For the examples in this article, you should use the basic document format I have just shown you, inserting the JavaScript code between the <script> and </script>tags. When you load the page in your browser, the JavaScript code will be executed automatically.

    Displaying the browsers name and version number.

    The “navigator” object in JavaScript contains the details of the user’s browser, including its name and version number. They can be displayed in a browser using the document.write function:

    document.write(“Your browser is: ” + navigator.appName);
    document.write(“<br>Its version is: ” + navigator.appVersion);

    I run Windows 2000 and Internet Explorer version 6, so the output from the code above looks like this in my browser window:

    Your browser is: Microsoft Internet Explorer
    Its version is: 4.0 (compatible; MSIE 6.0b; Windows NT 5.0)

    Changing the text in the status bar of the browser.

    To change the text in the status bar of a browser window, just change the “status” member of the “window” object, which represents the entire browser window:

    window.status = “This is some text”;

    Using an input box to get text from the user.

    Just like in traditional windows applications, you can use an input box to get some text input from the user. The “prompt” function is all you need:

    var name = prompt(“What is your name?”);
    document.write(“Hello ” + name);

    The prompt function accepts just one argument (the title of the input box), and returns the value entered into the text box. In the example above, you get the users name and store it in the “name” variable. You then use the “document.write” function to output their name into the browser window.

    Using a message box to display text to the user.

    You can display a message box containing an OK button. These are great when you want to let the user know what is happening during their time on a particular page. You can use a message box to display the “name” variable from our previous example:

    var name = prompt(“What is your name?”);
    alert(“Your name is: ” + name);

    The “alert” function takes one argument, which is the text to display inside of the message box.

    Changing the title of the browser window.

    To change the title of a web browser’s window, simply modify the “document.title” variable, like this:

    document.title = “My new title”;

    One bad thing about the “document.title” variable is that it can only be manipulated in Microsoft Internet Explorer. Netscape’s implementation of JavaScript doesn’t allow for modification.

    In Closing.

    As you can see from the examples in this article, JavaScript is a powerful scripting language that can be used to enhance a visitor’s experience with our site. However, you shouldn’t use JavaScript too much because in some cases it can annoy visitors and send them packing before your site even loads!

    Article Written By Lee

  • Barter For Business – Cost Free Trading

    Date: 2011.02.21 | Category: General | Response: 0

    Whether you are a designer, traffic broker, content provider or, web host the one thing that will connect your business in some form is that other webmasters at some point, will want the services and products that you offer. With this in mind, you are instantly at an advantage the reason for this advantage will become apparent in this brief article.
    Bartering Goods And Services.

    Bartering is a business practice that is as old as mankind itself, from the stone age right up to the present day individuals have been trading their goods and services for other goods and services of like value. This is where your advantage comes into play. Perhaps you are a web hosting company in need of design work or, perhaps you are a designer in need of traffic, either way, there will always be other webmaster who want the services you offer and, in return they will offer services that you require. This is the absolute fundamental basis of the barter system, trade one product or service for another in order to improve the way in which you do things.

    Finding A Company To Barter With.

    The problem that so often arises when bartering is involved however is finding a vehicle for you to start the bartering process. More often than not you can find someone on a message forum that will be willing to barter your services however, this is not always the case and so, you should turn to email to instigate the initial contact.

    Asking For A Barter – How To.

    First and foremost, before sending an email or making a post asking to barter your services or products you should compile a list of items that you need, this could be content, advertising, graphics work or even web hosting, either way, by having a clear concise list of what you are in need of and, more importantly, what you can offer in return prior to sending an email will help you out immensely.

    Now that you have your list of services you require and what you can offer in return it comes to the initial contact, the first thing you should do is explain what it is you are proposing as clearly as possible, explain why a barter with you will become a win/win situation for the both of you as well as making sure you drop a compliment or two about their company in the email. Also, you should prove why offering your services in exchange for theirs will be a fair trade, by doing all of this at the first point of contact you stand a much better chance of them accepting your trade proposal.

    Bartering – Recap.

    Bartering is a strong tool that can help you build your business from the very second you start it however, with this strong tool also comes the opportunity for it to become a strong negative when running your business. To much time concentrating on bartering services can take away from running your business to its fullest, rather than trying to barter services all the time, ensure you build a good capital up so you are able to invest in services to build your business. Either way, whether you choose to barter or not, this method has been proven in success for thousands of years, why not try it out for yourself?

    Article written by Lee.

  • The Negative Marketing Technique

    Date: 2011.02.24 | Category: Promotion | Response: 0

    Negative marketing is a wonderful thing in its own right however, negative marketing can, surprisingly enough have a NEGATIVE effect on your sales.

    How many times have you seen a site that has, about half way down the page some text telling the surfer no to click on anything because ‘these are only counters’?

    Counters in themselves can be VERY useful tools to the adult webmaster however, counters are given to us for free because of one simple reason, the graphics used on them are made in such a way that they will actually draw clicks from your traffic.

    Most of the time however, these counters that take your hits are helping you much more than you know, from giving you addition traffic, valuable surfer stats and many other things.

    Now, the same is also true for banner exchanges as is for counters, they are a useful addition to the variety of tools available for adult webmasters however, many webmasters, as mentioned above tell the surfer NOT to click on them, something i just never seemed to be able to get my head around. As you reading this post kind of proves, tell someone not to do something and you can guarantee they WILL do it

    However, as i started off this quick article saying, Negative marketing is a good thing, after all, you have now got the proof to tell you that it works why not put this to use on your site?

    For example, rather than telling a surfer…

    ‘Click Here For The Hottest Porn Site On The Web’

    Tell them…

    ‘DO NOT CLICK HERE’

    Wonder what they will do

    Article written by Lee

  • Quick Loading Pages Plus Saving Bandwidth

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    Have you noticed how many of the sites out there are trying to make themselves look better than they actually are by using heavy graphics and media files? The fact of the matter is this, most surfers who visit your we pages are viewing them on a screen that is between 15 and 19 inches wide, can only see 216 colors and, are on a connection of 33.6 kb per second (If they are lucky).

    What Does All This Mean?

    What does this mean to you as a webmaster? Simple, try this test.

    Connect to the internet on a 33.6 connection, type in your url and, hold your breath. Does the page load before you need to start gasping for air? If so then you are designing your sites correctly, if not, your pages are far to big in file size.

    I’m pretty sure that some of you can hold your breath for a long period of time so, here is a basic rule of web design. Your pages should, be no larger in file size than 50k in fact, I would even go so far as to say try getting your pages under 30k in size.

    How Can I Get It Under 50K? 30K?

    First, all your graphic images should be as small as possible. Try to get them smaller than 4k. Going up to 6k is reasonable. When designing a graphic for the web site keep in mind the number of colors being used.

    I know, from designing banners myself, it was hard for me to go from millions of color to only 216. Yes, 216 is the number of colors you have on a web safe color pallet.

    Use solid colors when designing your image. PhotoShop has made the gradient such a popular tool. It looks good to fade things in and out. I always see a background border made up of this gradient. I always right click on that image to see the size. The 8k-12k is not worth the space. The problem with the gradient is it uses many colors and dithering. Both take up big time K. The more color you have in an image the bigger it’s going to be.

    Use design more, graphics less. For a web page to be successful it needs to download quickly and look good.

    Here is the dilemma download quick or look good? Instead of designing graphics and taking pictures and turning them into jpgs to make your web page look good, try using color schemes. Use cell colors to make borders. Use the negative space on your web site. What is not there is just as important as what is there.

    Remember sometimes less is more. When in doubt think of a typical visitor coming to your web page. Would that extra graphic sell them or keep them coming back again and again. If the answer is yes, by all means keep it. If the answer is “well maybe” or “it just looks good there”, yank it.

    Your surfers will appreciate not waiting more then they have to. The web is here to make our life easier not to sit in front of a screen waiting for heavy web pages to download.

    Article written by Lee

  • Personality Plus

    Date: 2011.02.24 | Category: Promotion | Response: 0

    I have been selling to the gay market now for 5 years. And one trend I have noticed that works best in ANY marketing attempt is to make it personal as possible. Now this is true in any marketing venue; however, the same tactics of Personality I have used in the straight market were not enough for the gay market.

    The gay market is better served when the surfer BELIEVES, not just feels, you know him and know what he wants. This goes back to my previous comments on knowing your niche.

    I really believe that the “1 to 1 dialogue” you can have with your surfers is more important than just high traffic averages when making sales. Giving him the sense that he matters to you, a sense of community, a sense that you are here just for him is all accomplished by adding your own personality to your work.

    In many avenues I have said “talk to the surfer”. I have said it so much you are all probably sick of hearing it. But it WORKS. With many of my straight sites, I attempt to speak quickly and to the point, because while I know straight people I don’t know what is going to fly all the time. In those cases, though, instead of saying, “Click Here for Great Sex Sites” I will probably phrase it as “The best site on the net and Cheaper than a six pack of beer”. Am I being heterophobic with my lack of enthusiasm? Maybe. It is how I approach it and it does work.

    On my side of the fence, I would talk the talk, differently. While the basics remain the same, “talk to the surfer”, I approach it in a more personal manner… Again, instead of using “Click Here”, I would go with “Hmm, Hmm … I followed this yummy thing to Absolutely Male. I have to tell you, I had more fun here than anywhere else on the net. Made my toes curl and then some…” Enough of that now, huh? = )

    I do not stop at just the marketing. I do the same thing when it comes to the body of my sites. I will add statements that include a recent trip to the local gay watering hole, the men I saw on the beach, my own experience with a man in uniform, and so on depending on the theme of the site. And, yes since I’m not a total sex fiend, I do make things up as I go along ; )

    Recently, I have received letters from webmaster who have worked the personality approach. They have found a lot of success. However their bigger complaint was they now had a lot more bookmarkers than before. That’s great, as far as I’m concerned. This means they have been to glean a following of loyal surfers. And if you can work it, it is that loyalty that can make a HUGE difference. I think I will save how to work that loyalty factor for a future article or post.

    The gay adult net has gone full circle. In the beginning, personality was the KEY to success. Then we followed suit with most of the adult web and moved away from it to a “here’s some porn now buy something” attitude. Right now, when the going seems to be getting tough, our surfers are looking for the exact thing that made us different to begin personality and community.

    Article written by Gary-Alan

  • Mirroring Adult Sites – Stage Two

    Date: 2011.02.23 | Category: Promotion, Tutorials | Response: 0

    Ok, in stage 1 of this tutorial we learnt the basic ‘setup’ for our multisite generation now we have to start putting the rest of our puzzle together.

    At this stage in the tutorial we should now have a 50 pic free site, all of the images are in the appropriate folder on our HD along with the HTML in their own folder. If you have not already done so, you need to ensure that when you add/added the links to your individual HTML pages that you call the images like this:

    /FreeSite/Images/pic1.jpg

    The Thumbnails like this:

    /FreeSite/Images/Thumbs/thumb1.jpg

    The gallery links like this:

    /FreeSite/Galleries/gallery1.html

    And the FPA from the warning page like this:

    /FreeSite/FPA/fpa.html

    Why are we calling the links like this and not like, http://www.mydomain.com/FreeSite/Galleries/gallery1.html I hear you ask, well the answer is simple, in order to use this site TEMPLATE over and over again, we need to ensure that there is a standard way of calling the links, this way, once we decide duplicate this site on a different domain, all we do is upload the folder to our server with a different set of images and we have another set of sites built.

    Ok, we now have our free site but, we have some empty folders that need filling up, here is how we are going to achieve that.

    What we now have to do is re-open the Gallery Pages, DO NOT change the image calls or the thumbnail calls however, what you will need to do is select 15 TGP’s that you would like to submit to, download the recip buttons for these TGP’s and save them in the /FreeSite/Images/Recips/ folder.

    Now we have the gallery pages open we need to modify them like this..

    Take the top text link that you created and replace that with a 3 cell table. In this table for the first gallery, you need to call the first 3 recip links for the TGP’s you want to submit to and link them to the appropriate recip url for each of the TGP’s again, calling the recip images like this, /FreeSite/Recips/recip1.gif. Also, you will need to modify the text link at the bottom of your gallery pages, I would suggest creating an 8 cell table, containing 8 niche text links, four of which should go to your Single-Site FPA’s (as created for the surfer trap) and the remaining 4 text links should go directly to your sponsors site tour page.

    Now save this newly created page as tgp1.html in the /FreeSite/TGP/ folder. Do the above again for the remaining 4 gallery pages but calling a different set of recip links each time. each time you modify a gallery page save it in the /FreeSite/TGP/ folder so gallery2.html would be renamed to tgp2.html, Gallery 3 would be called tgp3.html and so on.

    What you should now have is a single 50 pic free site with 5 galleries of 10 pics, all pics going to the larger image on a HTML page and, 5 TGP galleries.

    This is as far as we go with the tutorial today however, in the next stage we will continue to fill in the rest of the puzzle pieces.

    Article written by Lee

  • The Gay Opinion – Obscenity Laws and the Gay Market

    Date: 2011.02.23 | Category: General | Response: 0

    Let me begin by saying this is not a legal dissertation, but a collection of opinions on the recent comments and events inside the industry.

    Obscenity Laws have always been the “fly in the ointment” for adult. Not knowing when, if or how the government will act toward webmasters or companies.

    So what do I think? Every indicator out there says something or someone is coming. Big Brother is on the prowl. But, how will webmasters in the gay market act to ward off the evil?

    While discussing this with a number of webmasters, I found that the gay opinion is spread as wide as a gigolo’s legs on payday. The thoughts that have been shared vary from ultra conservative to down right militant. And once again, I find myself stuck dead in the middle.

    Here is a sampling of the opinions at large:

    I’ve heard from some webmasters who have a “come and get me attitude”. Their approach is the government has done enough damage to the gay community over time.

    Their attempts to sanction the gay adult industry will be simply another shot at taking us down – and that attempt will garner a public/media fight of the government acting as a bully. Now does this have anything to do with adult? No matter how I look at it, the one subject isn’t related to the other. Personally, the government’s reaction/treatment to the gay community has little to do with the government’s action towards adult. Yes, I can totally see how they got there, but it’s not enough for me.

    There is the “what else is new” set. This is a group of webmasters who own pay and/or free sites, have been doing this for a long time and they have adapted their companies and their marketing to sell memberships to the surfers. They use softcore and stories already on their feeder sites, have webmaster programs and they are happy with the results and will not change a thing. Their methods work – methods are not blatantly sexual but more sensual and the conversions are a testament to that. By the way, this is where I stand (right in the middle). The general thought is nothing has happened yet. Work smart and don’t panic.

    The other side of this is the “oh shit’ers”. These webmasters are re working their entire networks of gay porn to follow a well-established method of softcore only. Make them Pay for the Meat! They are reacting by taking down all hardcore images from their sites in order NOT to stir up any government dirt. Well as far as I’m concerned, they should have been doing this to begin with… sell the hardcore to members don’t give it away on a free site. For this, group the panic is on.

    Finally I spoke with the “fuck ’ems”. Now their idea isn’t that the government is suppressing the gay community. They look at this totally as a first amendment issue of freedom speech and expression. They use both hardcore and softcore to resell for webmaster programs and frankly, they feel that they will prevail over any government attack simply by way of Bill of Rights. They’re making money and they don’t care who knows about it.

    What does this all mean? Well here’s my take…

    First, it’s apparent that the opinions are just as varied as webmasters working the straight market.

    There is a general feel of, don’t panic – more than I have seen with straight market webmasters. I honestly, think this comes from our years of battle against the government on many other issues. Until the rumors become fact we will move as we always have – then deal with what is concrete rather than the abstract.

    Overall, the most resolute business people I have heard from, all said the same thing. If you use common sense, use methods that work and that do not go overboard there will be no need to panic. The hobbyist who is trying to make a million will leave out of fear, the “over the top” websites will be the target and those businesses run with common sense will continue with no major issues. I think my favorite statement to come out of these conversations is, “The government will bite, if you give them the bone. Don’t feed them and they go hungry.”

    I see the same “proceed as usual” attitude out there, as I have always seen in the gay community. Deal with the facts and only and not rumors.

    Once again, this is totally based on opinion and by no means a legal stance. If you have any doubts, concerns or questions about obscenity laws in your area or in general, please consult your attorney.

    Article written by Gary-Alan

  • Newsletter Know How – A Guide To Writing Newsletters

    Date: 2011.02.23 | Category: Promotion, Writing | Response: 0

    Email newsletters are a great way to make contact with existing clients and, prospective clients which makes them a great marketing tool. The biggest bonus however, over Email newsletters rather than print ones is that you have virtually no cost involved with writing and, ultimately, mailing them out.

    There is a wide variety of online newsletter on the internet. however, probably the simplest form for most webmasters is the email newsletter. Email provides you with a quick way to keep your name out there, build trust with you readers and, hopefully attract a few sales. If you archive your newsletter also this is a great way to get additional pages into the search engines and, as such, it then becomes a good traffic driver to your website regardless of the amount of subscribers you have. However one of the most important benefits of having an email newsletter sent on a regular basis is that it build brand recognition of your website or business.

    Your newsletter should provide information, not just of an advertising nature but that, should also be informative to your subscribers. In doing this you are offering information of value and, ultimately, ensuring that your subscribers remain. However, remember newsletters are for promoting your area of expertise not just a vehicle for revenue generation.

    One of the first things you should consider when deciding to do a newsletter is the amount of commitment you will have to put towards the project. Whether you start a monthly, weekly or, daily newsletter a great deal of commitment must be made to both the newsletter and, more importantly, your subscribers. For example, We generally spend a good 3 days researching the articles that have been submitted and trying to ensure that the details contained within them are relevant at the time of sending the email, this is not an easy task especially when the adult internet is constantly developing. If you don’t have the time to research and maintain consistency in your newsletter, then don’t even consider doing one, it isn’t for you at the present time.

    Now you have decided you can make the commitment required to run a successful email newsletter what do you do next? Collect email addresses. Probably one of the easiest ways to get email subscribers to join your list is to go through your current mail clients contact list and manually add those email addresses or, further still, you may even have an opt in collection program that you have been using for a while but have never really had the time to commit to writing a newsletter worthy of sending out. Remember though, an email list is only as good as the addresses contained within it. You want to run an OPT-IN email list, any other type of list will be considered Spam and, that will do you more damage than good. Of course, if you haven’t already got an email collection program you can find one online there are literally hundreds of them floating around that you can get for free from sites like http://www.hotscripts.com.

    So, you now have your emails, onto writing your newsletter. I think the greatest part of email is that it is somewhat less formal than writing for print copy. Email in fact tends to be very informal in comparison. The best way at approaching writing for an email newsletter is to write how you talk, it is more enjoyable for the reader and gives your newsletter a personality that no one else can emulate. Content wise, that depends on what you do, what would YOU like to see if you subscribed to an email list of the type you are going to be running and, more importantly, what would ensure you stay subscribed to the newsletter? Ask your friends, colleagues and, peers what they would like to see in an email newsletter, often they have been looking for information that is not readily available, this is an area where you then start to provide a service that no one else does.

    So you are at the point where you are starting to realize that running a newsletter is a lot of work correct? Well, it is. However, the effort, work and, time spent in putting your newsletter together will help you build a relationship with people whom, in all actuality, you may probably not ever meet in a face to face situation and, more importantly, it can become a great income generator over time.

    Article written by Lee

  • Everybody’s Going Gay

    Date: 2011.02.22 | Category: General | Response: 0

    The past few months in the online adult industry have seen some rather dramatic changes happen from Visa charging additional fees to accept their credit cards online, Paypal no longer processing adult and, several large companies going out of business. However, one thing that also seems to be changing for the better is the amount of webmasters looking at new niches to promote. Surprisingly, the one niche that many webmasters are looking at is that of the gay niche.

    Where The Money’s At.

    For years, the adult webmaster community has been split amongst themselves, those that are only focused on straight niches and, those that focus on gay niches however. As of late, more and more of those webmasters from the first group are looking to make additional income from the gay niche. With this inevitable surge in gay adult sites coming online, there are bound to be some knock-on effects, and those webmasters just starting to look at the gay niche, will return to what they know. However, for most, i think this is going to be a fruitful encounter with one of the industry less socially accepted markets. Many of the webmasters who have been concentrating solely on the straight market for their income are going to realize just how much money they have been losing out on for all these years. And with this realization, comes its own set of problems for the industry as a whole.

    The Gay Market.

    Whether you are a straight webmaster or a gay webmaster the one thing that will become apparent is that your sites are going to reflect you in both, how they look and, the marketing techniques you use. More importantly, the attitude you have towards your gay surfers will in fact show through. Many of the straight webmasters whom, perhaps are not as tolerant towards this niche will, almost certainly fail before they can really get going. Marketing gay adult sites is far different than marketing straight adult sites. You have to know the surfer, understand what they want and, more importantly, know the terminology in the gay market. Many times a post can be seen on various message boards belittling those webmasters who are openly gay – often accompanied by terms such as ‘fag’, ‘queer’, ‘homo’, etc along with with images being posted that, quite frankly, would turn most people’s stomach.

    The gay niche is much more than just a single online market, it is a whole lifestyle unto itself. While this lifestyle is affluent (having an abundance of readily available money to spend) it will take a lot of work and perseverance to ensure you get your share of this market.

    Starting Points.

    As I mentioned above, the main thing many webmasters are going to have to learn are the terms of the gay market, what is a twink? A bear? A cub? What products work well on gay sites? Despite what most people think, you cant just throw up some banners with naked men on them and turn a profit. Match your content to a niche and then, match your advertising to your content, what use is it having bears on a site if, the paysite you are promoting features Teens ‘n’ Twinks?

    Similarly, your text links, ‘Click Here For Hot Gay Action’ might get you a few clicks but, by targeting your surfers even more, you will see how some of the gay niches can really turn a profit. The trick is this, get the surfer to your site and actually give them something that you think will suit their desires. This may mean making a 10% commission on a sex toy sale as oppose to a $35 commission on a pay site membership. And so be it. Those 10%’ers start to add up after a few sales.

    In Summary.

    To summarize, the gay niche will make you money however, to make money you will need to invest something that, perhaps isn’t for everyone – a lot of time and understanding. Marketing the gay niche isn’t for everyone, we have seen this too many times. However for those who are, spending time adding a gay market portfolio to there straight, with a little time increase your overall income significantly.

    Article written by Le

Premium Sponsors















Categories

Site Links