Posted by Pankaj in Web development | 86 views
I have just gone through a very interesting topic on web on advanced CSS tutorial. i want to share this link to all of my blog readers.
Go through link :http://www.w3.org/2005/Talks/11-steven-css-advanced/
after going through this link I notices that we can use CSS for most of our daily routine web development problem with this tutorial. this is very short explanation of advanced CSS.
Net is a best source to learn. you can find any problems solution on net. I hope this link will help you.
Posted by Pankaj in Web development | 14,396 views
I have given a code in my earlier post for jquery image rollover. Now here are the final code and guide how to use this code.
- you need to creative two image ie: one for normal state and one for active/rollover state. name it like imagename.gif and imagename_active.gif.
- put your image in your HTML document.
- put all your image in normal state. remember to keep the active state image in same folder.
- include jquery latest script from jquery website and include script on your head section.
- copy below code and paste after jquery include. (you can put this code in common include file and include after jquery More >
I am holding few domains which I am not using from long time and investing on every year. Following are the domains.
My idea is to sell those domains but I have just tried AdSense for domain. The great feature of this product is free. Cash parking is not a good idea for me I am ready to sell those domains. If you are interested for above domains you can submit a comment on same post.
Following are detail of AdSense for domains. (Source: http://www.google.com/domainpark/)
AdSense for domains allows publishers with undeveloped domains to help users by providing relevant information including ads, links More >
Posted by Pankaj in Web development | 83 views
After lot’s of effort working on typo3 I have decided to use WordPress as my blogging needs. Making a custom look website in typo3 is quite simple with knowledge of typoscript but setting a blog on TYPO3 is very tough. following are some point which is support my decision.
- I have tried, t3blog and wec plugins for TYPO3, its take lots of time to setup.
- TYPO3 take too much of time to set real url or cooluri for SEO needs
- Duplicate url problem due to home page shortcut. I spent again lot’s of time to fix it.
- finely I had very less time to More >
Posted by Pankaj in Web development | 324 views
if you need unobstructive JavaScript for image rollover you can use following code. I am not providing any detail markups for that if you face some problem to use that let me know. i will provide a demo section very soon for all of script.
1234567891011121314151617jQuery.
fn.
extend({
enter
: function() {
return this.
each(function() {
var pth
= $
(this).
find("img")[0];
if($
(this).
children().
attr("href")==document.
location.
href){
$
(pth
).
attr("src",pth.
src.
replace(/.gif/g, '_over.gif'));
} else{
$
(this).
hover(function(){
$
(pth
).
attr("src",pth.
src.
replace(/.gif/g, '_over.gif'));
},function(){
$
(pth
).
attr("src",pth.
src.
replace(/_over.gif/g, '.gif'));
});
More >