1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

CODE your design very CHEAP and pay only IF YOU LIKE what you see

Discussion in 'Programming' started by LucianoFigallo, Nov 12, 2007.

  1. #1
    CHEAP Coding Service - PSD to XHTML/CSS - Starting at $10

    This is what I’m offering:
    - XHTML/CSS coding of your website. Just send me the.PSD files of your site design and I’ll do all the slicing work and coding
    - Code compatible with Internet Explorer 6 & 7 and with the latest versions of Firefox, Safari & Opera
    - W3C Transitional Validated. Clean and tableless code that will be done in 48 hours or less. Prices start at $10 for simple designs

    Here’s the deal:
    Once I finished the code, I would send you screen captures of the actual design running in the different browsers and screenshots of the W3C Validation
    If you’re satisfied, and after receive the payment, I would send you the XHTML/CSS files and all the sliced images needed

    These are some examples:
    EXAMPLE 1
    EXAMPLE 2
    EXAMPLE 3
    EXAMPLE 4

    To place orders or request a quote please PM me or post here
    PayPal payment
     
    LucianoFigallo, Nov 12, 2007 IP
  2. Mojave

    Mojave Peon

    Messages:
    145
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    You have a private message, I'm looking for a few pages to get built.
     
    Mojave, Nov 13, 2007 IP
  3. LucianoFigallo

    LucianoFigallo Peon

    Messages:
    419
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    Information sent to ninjamuk and Mojave
    Yes I can work with Illustrator and PNG files
     
    LucianoFigallo, Nov 13, 2007 IP
  4. tomah

    tomah Peon

    Messages:
    143
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #4
    Hey,

    Have you any experience in coding for WordPress?
     
    tomah, Nov 13, 2007 IP
  5. Digital_Developer

    Digital_Developer Well-Known Member

    Messages:
    103
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    As Seller:
    100% - 0
    As Buyer:
    100% - 2
    #5
    $10 for simple designs. How much for "information portal" type designs.

    PM and I can elaborate more.

    Take care

    D_D
     
    Digital_Developer, Nov 13, 2007 IP
  6. Digital_Developer

    Digital_Developer Well-Known Member

    Messages:
    103
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    As Seller:
    100% - 0
    As Buyer:
    100% - 2
    #6
    I had a look at your examples and my job shouldn't be any more complicated than those :)

    edit: Just wanted to ask, how much do you charge for "strict" xhtml.
     
    Digital_Developer, Nov 13, 2007 IP
  7. coldgansta

    coldgansta Guest

    Messages:
    1,614
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #7
    sending you pm i could use your service.
     
    coldgansta, Nov 13, 2007 IP
  8. LucianoFigallo

    LucianoFigallo Peon

    Messages:
    419
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #8
    Yes, I can code for Wordpress
    Yes, "Simple Designs" are those similar in complexity as the Examples I show here
    Your PM is already answered coldgansta
     
    LucianoFigallo, Nov 13, 2007 IP
  9. VimF

    VimF Well-Known Member

    Messages:
    307
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    118
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #9
    Very clean code, both xhtml and css. But this

    
    	border-right-width: 15px;
    	border-left-width: 15px;
    	border-right-style: solid;
    	border-left-style: solid;
    	border-right-color: #393939;
    	border-left-color: #393939;
    ...
    	margin-right: 15px;
    	margin-bottom: 10px;
    	margin-left: 5px;
    	margin-top: 5px;
    
    Code (markup):
    should be just like this:

    
    	border: solid #393939;
    	border-width: 0 15px;
    ...
    	margin: 5px 15px 10px 5px;
    
    Code (markup):
    also this is non-semantic, and what are labels doing in a list of links?

    
    <div id="sidebar">
    	<label><a href="#" >Home</a></label>
    	<label><a href="#" >Tracks &amp; Facilities</a></label>
    	<label><a href="#" >Costs</a></label>
    	<label><a href="#" >Riding Requirments</a></label>
    	<label><a href="#" >Contact Us</a></label>				
    </div>
    
    Code (markup):
    it should be:

    
    <ul id="sidebar">
    	<li><a href="#">Home</a></li>
    	<li><a href="#">Tracks &amp; Facilities</a></li>
    	<li><a href="#">Costs</a></li>
    	<li><a href="#">Riding Requirments</a></li>
    	<li><a href="#">Contact Us</a></li>
    </ul>
    
    Code (markup):
     
    VimF, Nov 13, 2007 IP
  10. LucianoFigallo

    LucianoFigallo Peon

    Messages:
    419
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #10
    Many thanks for the feedback VimF...I will do something about it
     
    LucianoFigallo, Nov 14, 2007 IP
  11. LucianoFigallo

    LucianoFigallo Peon

    Messages:
    419
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #11
    Files received from georgie casey and ninjamuk...both works in progress...thanks
     
    LucianoFigallo, Nov 14, 2007 IP
  12. ninjamuk

    ninjamuk Peon

    Messages:
    305
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #12
    Thanks Luciano
     
    ninjamuk, Nov 14, 2007 IP
  13. LucianoFigallo

    LucianoFigallo Peon

    Messages:
    419
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #13
    thanks to you buddy
     
    LucianoFigallo, Nov 15, 2007 IP
  14. murph

    murph Peon

    Messages:
    1,209
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #14
    very interested in this...
     
    murph, Nov 15, 2007 IP
  15. LucianoFigallo

    LucianoFigallo Peon

    Messages:
    419
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #15
    I've sent you a PM murph
    Many thanks for the interest
    Hope to work with you
     
    LucianoFigallo, Nov 15, 2007 IP
  16. Juls

    Juls Well-Known Member

    Messages:
    1,867
    Likes Received:
    62
    Best Answers:
    0
    Trophy Points:
    170
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #16
    contact me. i added you to msn. i need a psd coded. :)

    let me know.
     
    Juls, Nov 15, 2007 IP
  17. LucianoFigallo

    LucianoFigallo Peon

    Messages:
    419
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #17
    I've just sent you a PM Juls
    Contact me via MSN or write me
     
    LucianoFigallo, Nov 16, 2007 IP
  18. The Emirates Gallastico

    The Emirates Gallastico Banned

    Messages:
    4,639
    Likes Received:
    182
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #18
    How much dya charge for WordPress coding? If the price is good, I've got a lot of work for you.... ;)
     
    The Emirates Gallastico, Nov 16, 2007 IP
  19. LucianoFigallo

    LucianoFigallo Peon

    Messages:
    419
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #19
    PM sent to The Emirates Gallastico with the info
     
    LucianoFigallo, Nov 16, 2007 IP
  20. sethuhdiah

    sethuhdiah Well-Known Member

    Messages:
    1,651
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    130
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #20
    I have some psds for you to slice as well :)
     
    sethuhdiah, Nov 16, 2007 IP