-
Search
Categories
-
Linux, PHP, LAMP, The Web in a blog- Android – how to develop directly on a phone
- Android drawable default icons – they are free to use
- Android how to read and write files
- Uncompress on the fly when copying a file from a remove location with scp
- Setting up an encrypted volume on an external hard drive on CentOS
- Linux bash – tar tricks
- Implement Selenium tests
- Using a downloaded package without IDE in Java
- CSS selectors optimisation
- Ubuntu Linux on Acer Aspire AO751h
Tag Cloud
alarm array backup begin button character commercial constants coppermine CSV DVD eclipse ecommerce email email server expect firefox font foreach formatting fstab ftp GMail gnome keyboard Lucene marketing memcached mount plugin profiling protect regexp scp Selenium SEO sftp split svn tar utf utf8 Vbulletin Virtual Server Web Dev Security
Category Archives: Web Design
How to make a transparent background/selection on an image using GIMP
http://geekswithblogs.net/TimH/archive/2006/03/20/72797.aspx
Posted in Web Design
Leave a comment
CSS Sprite Online Generator
http://spritegen.website-performance.org/ You can’t include animated gifs in the sprite (otherwise they will be still). You can’t include list bullets because if the list item is quiet long, the images under the bullet point icon in the sprite will be shown.
Posted in Web Design
Leave a comment
Minify CSS and Javascript Files With YUI Compressor From Linux Command Line
You can download YUICompressor from here: http://yuilibrary.com/downloads/#yuicompressor Extract the package You need Java to execute it (on Ubuntu): sudo apt-get install sun-java6-jre To use it, you can execute this on the command line: cat jquery-*.min.js library.js common.js lists.js tasks.js contexts-mgmt.js … Continue reading
Posted in Web Design
Leave a comment
Free Icons
http://www.pinvoke.com/ http://www.famfamfam.com/lab/icons/silk/
Posted in Web Design
Leave a comment
In-CSS IE Hacks
li.filter ul li { margin-top: 5px; } /* any good browser */ * html li.filter ul li { margin-top: 5px; } /* hack for IE6 */ *:first-child+html li.filter ul li { margin-top: 5px; } /* hack for IE7 */
Posted in Web Design
Leave a comment
About Floating Divs Inside a Container (Float)
2 floated elements inside a container. The container doesn’t expand to contain the floats. There are a lot of solutions to this, such as sticking in an element to clear the floats (bleh) before closing the container, using the :after … Continue reading
Posted in Web Design
Leave a comment
Creating a Button Using Gimp
Creating a button with Gimp new image 80×20 select the all image with ‘Select Rectangular Region’ tool Menu > Select > Rounded Rectangle Radius about 40/50 Gradient tool Make a vercial gradient with two colors quite close Text Editor: Sans … Continue reading
Disabling / Hiding Inner Borders Inside a Table
border-collapse: collapse
Posted in Web Design
Leave a comment
CSS – clear both – clearfix
.floatingDiv:after { content: ‘.’; height: 0; width: 0; clear: both; visibility: hidden; } With this trick, you don’t need to remember to use clear: both on the next div you don’t want it to float.
Posted in Web Design
Leave a comment
