Penguination Project


Archive for the ‘Programming’

Htaccess automatic CHMOD tutorial

Sometimes we should ensure that particular files chmod configuration is configured properly, and if we are not sure we can simply use .htaccess for proper auto configuration, for example you have some file config.ini and it’s chmod should be 755, and if you have 200 files like config.ini in lots of directories ?  Here is the [...]

Htaccess custom error page

Sometimes when your visitors browsing your page and your content was removed or deleted, they will see simple “not found” page or 404 error – not found message set by default with apache server.  We will modify our server configuration file .htaccess and will show you how to design your custom error page.  First we will create [...]

PHP Magic Quotes theory and the operation

One of the known PHP developer’s problems are the quotes and double quotes. It was a sunshine day when we started developing our Twitter related application allowed to users tweet from code tweets that are more than 140 characters. Everything worked smooth until somewone typed something like this :  Check out my new track “VNV Nation- [...]

CSS horizontal drop down menu tutorial

We will create horizontal drop down menu that works with any explorer. Let’s start: Open your .css style file and type these lines : Create your css drop down menu div object. You can color it’s background with any color and change width to any size. #menu { width: 100%; background: #ffffff; float: left; border-bottom:1px solid #ccc; } Next we will create list object for [...]

Horizontal CSS menu

Hello, we will create today great horizontal CSS menu used at Youtube Video Collector website. You can use this CSS code to create your horizontal menu. It works great with any browser. /** MAIN-MENU */ #main-menu { margin: 0px 0px 10px 0px; text-transform: uppercase; height: 55px; } #main-menu ul { margin: 0 auto; padding: 11px 0px 0px 7px; list-style: none; } #main-menu li { display: inline; position: relative; } #main-menu a { padding: [...]

Best css font family combination

Hello, after lots of tutorials of website design we’ve chosen best css font combination , now our penguin websites are looks much better. Check it out : font-family: Arial, Helvetica, Tahoma, sans-serif; Good luck coding and greetings from Pengland !