Display Child Pages title & content on Parent Page

I am developing a custom theme for my client, and there was a need to show the title and the content of the child pages under the specific page within the website. I’ve been looking for a solution for a few days already and every solution iv’e found did the same thing, it posted the [...]

CSS3 Gradients with opacity works with IE

I am working on a project for my customer currently, and as always i try to make cross browser consistency. I have built a drop down menu with CSS3 Gradients and added Opacity to it as well, everything looked great, until i have opened it in IE… i know that IE does not recognize any [...]

Ways to increase site performance

There are many ways to increase site performance, until now i have discovered a few very good ways to make it better. In this post i will show you the ways i have discovered and explain to you how they work and exactly improve your site performance.

Dynamic Div Box

In order for you to create a dynamic div box you should have an image of a box. Then you have to devide it into 3 different images, the top part of it, middle and the bottom. Except the middle part should be only 1 pixel height, it will get the repeat-y rule so that [...]

Forms and E-Mail Validation Example

I have found myself every time looking for ready scripts to save me time in writing scripts. Forms and Email address validation is one of them, and sometimes it’s hard to find a good script, so i have decided to share the script i use in my sites for validating e-mails and forms. Two things [...]

Webkit transition example

Hello Again, you must have noticed the nice webkit transition effect (works only with chrome/safari browsers ) on my ads along with the box shadow. This is just one example of what can be achieved with webkit transition. how you can achieve this effect? CSS Code: .ads{-webkit-transition: all 0.2s ease-out; opacity:0.5;} .ads:hover {-webkit-box-shadow:0 0 10px #000000; [...]

IE 7 ul in floating div

Hi guys, Recently i have encountered a problem in IE7 when i put a ul in a floating div, for some reason the ul slides out of the div and it doesn’t look good at all. The Solution for the ul in floating div: Just add in your header a new stylesheet witch will load [...]

CSS template with sticky footer

Hi guys, This time i made just for you a completely free css template with sticky footer and a vertical css menu. Demo of this template can be found here Download the template here You may change this template as much as you want, and use it as much as you need. A back link [...]

Center a DIV with CSS

Hi, This time i am going to show you how to center a DIV block with CSS style. Centering a DIV The code you need to center only your DIV. <div id=”center”> some code… </div> CSS code for centering DIV #center   {width:700px; margin:0 auto;} You may change the width of the DIV to any [...]

C Sharp console lottery application

Howdy guys, A friend of mine had to write a small project in C-# (C-Sharp) and i have decided to join him in writing the lottery console application, so that maybe i will learn something from that too… The purpose of this application is get lottery numbers from the user manually or automatically present them on screen [...]