First one to find what title orange font www.Amazon.com uses and implement it on http://rssautoinsurance.com/formedit/amazonfont.htm those text will get $5 via paypal. : I think this is fairly easy to do, just find Amazon.com's CSS file http://g1-ec2.images-amazon.com/images/G/01/nav2/gamma/n2CoreLibs/n2CoreLibs-n2v1-12801.css and locate the font where it says the title. First one to do it, provide me with the font name and dimension. will get $10 via paypal.
font: Verdana color: #cc6600 font size: small, 135% To implement on your site: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> <style type="text/css"> body { font-size: small; } h2 { font-family: verdana,arial,helvetica,sans-serif; color: #c60; font-size: 135%; line-height: 1.4em; } </style> </head> <body> <h2>What Do Customers Buy After Viewing This Item?</h2> <p> </p> <h2>Save Up to 50% on Pedro's Cycling Accessories and Gear</h2> <p> </p> </body> </html> Code (markup):
Verdana (for the big title), size: 16.2px Tahoma (for the left navigation small title), size: 13px <p style="font-family: verdana,arial,helvetica,sans-serif; color: #c60; font-size: 16.2px; font-weight:bold; padding:0;">What Do Customers Buy After Viewing This Item?</p> <p style="font-family: tahoma, sans-serif; color: #c60; font-size: 13px; font-weight:bold; padding:0;">Bargains</p> HTML: or... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Worth $10</title> <style type="text/css"> h2 { font-family: verdana,arial,helvetica,sans-serif; color: #c60; font-size: 16.2px; font-weight:bold; } div.leftNavTitle { font-family: tahoma,sans-serif; color: #c60; font-size: 13px; font-weight:bold; } </style> </head> <body> <h2>What Do Customers Buy After Viewing This Item?</h2> <div class="leftNavTitle">Books, Music & Movies</div> </body> </html> Code (markup): Save the code to html file, compare with amazon the title. $10 if you're satisfied
I will try Krt's code first, if that don't work and then I will try Commited2u. First code I get to work will get $10 via paypal. Thanks guys.