Search results

  1. Marc0

    Make Money by Answering Questions Online

    In this modern age, the Internet isn't just a great source of information but also an effective answering machine. People often have some questions that they hope to get answers right away. The Internet is serving them well on this. Examples of questions like which year Obama was born, what is...
  2. Marc0

    Tips for Making Money Online with Blogging

    Blog is no longer just a personal journal or dairy nowadays. People use blog not just for sharing what they know but also use it for marketing and making money online. If you look at the successful bloggers today, you'll find that they are so popular in the blogosphere and also at the same time...
  3. Marc0

    Instructions to Affiliate Marketing before Getting into It

    Affiliate marketing is simply a technique of Internet marketing. It is a technique that often used by webmasters and bloggers to make money online. Affiliate marketing works in a way where an individual signs up for an affiliate program of an online company and once the individual has become an...
  4. Marc0

    8 Ways to Find a Suitable Affiliate Program

    You probably might have given a thought to joining an affiliate program for arriving on this page, or you are plain lucky to have accidentally landed on it. Either way, the content of this page might as well mark the turning point of your financial life because, there are literally thousands of...
  5. Marc0

    Should use auto post plugin for wordpress ?

    My blog has less posts so I want to have more post on it. I'm searching a plugin can help me auto post form other sources. should I do this ? Which is best wordpress auto plugin and is it effect to my site on search engine ? thanks in advance,
  6. Marc0

    Search and replace string in 2000 wordpress posts ?

    I have a wordpress blog about 2000 posts and I want to change some texts on posts if I update content per post in wp-admin it's consume more my time to do so I want to search and auto replace texts in posts, anyone can help me do that? Thanks
  7. Marc0

    Which is the most popular CMS ?

    Which is the most popular CMS and why? 1. Wordpress 2. Drupal 3. Joomla I choice wordpress because I have more sites on wordpress and it's simple and custom easily and which Cms do you like best ?
  8. Marc0

    How to use CSS Sprites ?

    anyone know how to use CSS Sprites to make different backgrounds in a image file ? Thanks
  9. Marc0

    Align center for <ul></ul> ?

    I have made nav-bar for my site with css how to align center for <ul><ul> for that code ? Thanks
  10. Marc0

    Class and ID in CSS ?

    Anyone know how to use Class and Id in Css and are they different from?
  11. Marc0

    What is your favourit editor for Css ?

    1) Notepad: normal use 2) Notepad + +: support code and tab-colored stools 3) Dreamweaver : support autocomplete 4) Rapid CSS: good 5) Style Master 6) Microsoft Expression Web can anyone leave some suggestions about your favourit editors for Css ?
  12. Marc0

    How to design a Joomla template ?

    I want do design a Joomla template for my site ? What do I need to know to design a template . Any suggestions or tutorials ? Thanks
  13. Marc0

    Best WordPress Plugins to Use in 2012 ?

    I like wordpress because it has more good plugins for me custom site quickly anyone is wordpress expert pls let me know list of best plugins for wordpress in 2012 ? Thanks
  14. Marc0

    Best CMS for site shares ebooks ?

    I want to make a sharing site about ebooks, documents... anyone know best Cms for this ? any suggestions ?
  15. Marc0

    validate a URL with Javascript

    The input can begin with either the text "http" or "file", so the two are grouped together with a | to show that either one or the other value is acceptable. Whether the user is getting the image off of their hard drive or off the Web, the next characters have to be "://", so that's checked for...
  16. Marc0

    Validating a File Name with JS

    There are many things that can be done with regular expressions, but one of the most useful is validating entry fields in forms on your Web pages This script asks for an image location and, if it passes the validation, displays the image on the page. window.onload = initForms; function...
  17. Marc0

    Validating an Email Address with Regular Expressions

    These few lines of JavaScript go a long way to validate email addresses. window.onload = initForms; function initForms() { for (var i=0; i< document.forms.length; i++) { document.forms[i].onsubmit = function() {return validForm();} } } function validForm() {...
  18. Marc0

    Setting a Target for Frame

    If your site uses frames, it's common to have a framed navigation bar that loads the different pages into the main frame. The main frame is the target for the links in the navigation bar, and to load that main frame using HTML, you use the target attribute of the <a> tag. But if you want to use...
  19. Marc0

    Displaying Random Images with Javascript

    If your site is rich with graphics, or if you are displaying digital artwork, then you may want to have a random image from your collection appear when the user enters your site. This simple HTML creates the page for a random image. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
  20. Marc0

    Tips For Form Handling

    Any time you need to gather information from the users of your Web sites, you'll need to use a form. Forms can contain most of the usual graphical interface elements, including entry fields, radio buttons, check boxes, pop-up menus, and entry lists. In addition, HTML forms can contain...
Top