125 Ad spot 125 Ad spot

Carthworks is a web design studio based in India. We specialise in creating attractive, usable and search engine friendly websites and web applications.

We are passionate about design, coding and project management. We believe that websites should be more than eye-catching: they should be easy to use, highly visible in search engines and achieve their business objectives reliably. In addition to web design and web application development, we can also help market your business through a suite of online marketing services like Search Engine Optimisation (SEO), Electronic Direct Mail india since 2005 as a privately-held company. Over the years we have completed more than 50 projects successfully and have happy clients all over the world. Find out what’s new in our blog or get in touch now.

29 October 2009 0 Comments

Joomla :How to move Joomla to another directory?

Many web designers prefer to build their websites in test folders and when their development is over to move their Joomla applications to the root folder of their hosting accounts.

For the purpose of this article let us presume that we have a Joomla 1.5 installed in the public_html/test folder in our account and we want [...]

18 September 2009 0 Comments

Target IE6 and IE7

#myelement
{
color: #999;              /* shows in all browsers */
*color: #999;             /* notice the * before the property – shows in IE7 and below */
_color: #999;         /* notice the _ before the property – shows in IE6 and below */
}

17 September 2009 0 Comments

Recent css Tricks learned

 
 1. z-index only applies to elements that are given a “position” value
2. margin: auto” will only work when a width is declared for the element.
3. padding adds to the overall width of the element. and cannot contain negative values.
4.CSS SpecificityCSS styles follow an order of specificity and point values to determine when styles override one [...]

11 September 2009 0 Comments

Browser sniffing or detection : Conditional Css

<!–[if gt IE 6]> <link rel="stylesheet" type="text/css" href="css/ie7fix.css" media="screen" /> <![endif]–> <!–[if lte IE 6]><link rel="stylesheet" type="text/css" href="css/ie6fix.css" media="screen" />  <![endif]–>

<script language="Javascript" >     var useragent = navigator.userAgent;     var bName = (useragent.indexOf('Firefox') > -1) ? 'Firefox' :navigator.appName;     if (bName == "Firefox")  [...]

7 September 2009 0 Comments

MySQL table and want to build a XML file with it in order to make a RSS feed.

<?php $dom = new DOMDocument() ; include "connection.php"; $queryz = "SELECT * FROM ticker"; $resultz = mysql_query($queryz) or die('Error, query failed'); $row = mysql_fetch_assoc($resultz); $rss = $dom->createElement('rss'); while($row = mysql_fetch_array( $resultz )) { $item = $dom->createElement("item"); $item->appendChild($dom->createElement("title", $row['item_title'])); $item->appendChild($dom->createElement("pubDate",$row['item_pubDate'])); [...]