Quantcast

CSS Float Problem

CSS Float Problem

When designing a website or making website layout, we want some elements to align on the right or on the left of the web page. Usually, we use CSS float property (“float:left/right”)to align the elements. The left value of float property aligns an element to the left and right aligns an HTML element to the right. You might have used ... Read More »

Write Text Over Image or Picture with PHP

Adding custom text over image or pictures is a good way to declare copyrights or give a simple title information to that graphical image or picture without editing the image itself. PHP made it very easy to add custom text over image or picture by using some basic functions from PHP GD. Read More »

Get Browser and Operating System Information with PHP

Long time ago I needed to get browser information with PHP and I wrote a class which uses preg_match_all function with regular expressions to get information from browser.This class will return information from browser in an array format included browser name, browser version and also operating name. It helped me so I shared to help others. Read More »

Smooth Scroll To The Top of The Page in jQuery

When content of a web page exceeds and visitors scroll down the web page, then having a button to smooth scroll to the top of the page is a good idea. jQuery scroll function made it very easy to create a such a button just by writing a few lines of code. jQuery scroll function is checking if the document is scrolled and ... Read More »

jQuery is not Working in UpdatePanels in ASP.NET

ASP.NET UpdatePanel control allows to build rich, client-centric Web applications. UpdatePanel controls refresh only selected part of the page instead of refreshing the whole page with a post back. In another words this is performing a partial-page update. A Web page that contains a ScriptManager control and one or more UpdatePanel controls can automatically participate in partial-page updates, without custom ... Read More »

Scroll To Top