hardik
developer, researcher and now blogger
-
100% height div that is 100px from the top and 100px from the bottom of the page.
hi you want something like this ? http://css-tricks.com/examples/BlurryBackgroundEffect/ or http://css-tricks.com/how-to-resizeable-background-image/
-
jack of all trades (master of none)
well it would be good if you start learning the essentials and basic things. then you need to learn how browser's handle the pages or i should say parses the page. you need to learn how box model's work. and what happens when you give styl…
-
PHP with MS SQL Server
use database library's like adodb or PDO and many more. for database intrections use tools like ORM. this way database will never matter you can use mysql or mssql or anything in backend and yet you have same syntax for all your projects.
-
[Solved] Problem linking to an image from custom fields inside WP CMS.
is there any firewall in your machine which could block the image ? i have experiennced this with norton firewall blocking all my image named banner
-
Wordpress with an existing page
well you can read rss using php and show it the way you want. just google rss reader in php and you have a lot of good ones.
-
Compass/Sass on Windows
you need to make sure they are all coming in PATH environment. i,e PATH = 'c:/windows';'D:\sass\'; this will help command line to find commands you want.
-
[Solved] CSS Center with 3 Divs
all 3 box needs equal padding. you seems to be giving padding from right side only. try to give padding from left side also. .box{ padding:0 25px 0 25px } can help you i guess :)
-
please help me with these IE issues - i suck and i'm scared!
well i don't have ie6 right now but i can give you some advice i guess put display:inline everywhere where you have used float, half of your problem will gone. + use ie conditions and include separate css for ie6 and do what you want to do w…
-
[Solved] Change WP Theme According to Language
well you can pass selected language in the url or store it in session and use that variable just before you drop your css if($currenttheme=='test'){ }else{ }
-
Static Abstract and Interface Classes
both concepts are used in large companies to control the project flow. actual implementation is used in multi developer environments manage there codes better. interfaces are used when you are going to create api's. the main system developer …
-
Wordpress with an existing page
you can use rss of your blog and style it news page like your blog.
-
SubDomain LogIns
yes, depends upon the code you have written. if you have diffrent script at subdomain then the main site then you can use session files method. where you can store sessions in a file using php. now from subdomain you can read those files and read se…
-
Favorite text editor
i m using netbeans with php enabled. and it rocks. if you are doing serious oop based programming then netbeans is really cool. as it gives you ability to move to any where in your project easily. by just clicking function name it can open files acc…
-
[Solved] Rotating BG in CSS and center BG
i guess you already know how to save optimized images from photoshop. now i m assuming you have 5 images. and you are using php array i.e $image_array = ('1.jpg','2.jpg','3.jpg','4.png',5.jpg'); $rand…
-
Help on creating a website with a dynamic size width
search for "fluid css grids" on google and you will get the layout you want. :)
-
New Forums!
i don't know it's bug or not but when i reply it doesn't show my post count it just shows posts : ? i m bit confused is this number of posts i have actually write includes answer to others and everything OR posts that i am the autho…
-
[Solved] Moving Sidebar
http://css-tricks.com/examples/ScrollingSidebar/css.php you want this right ? or you are saying something diffrent ?
-
[Solved] Rotating BG in CSS and center BG
two problems here. 1 images are quite large i guess and it takes some time in slow connection. and randomness of your script chooses not much randomly :) well the problem is if you provide 5 images to your php script and tell it to make it random i…
-
[Solved] Moving Sidebar
check out this and see if this can help.... http://css-tricks.com/examples/ScrollingSidebar/ don't forget to say thanks to chris.
-
text wrapping on horizontal scrolling site.
you can use jquery to show it custom way. or you can use plugins like http://desandro.com/resources/jquery-masonry/ , see their code for demos and may be this can help you, http://desandro.com/demo/masonry/infinite-scroll.html
-
FancyFlickr (wp plugin) help!
i m in if you can throw some light at what help you need.
-
[Solved] jQuery Masonry & Google Fonts
you need to apply masonry plugin after google fonts load. because of diffrence in font sizes you need to use custom google events for the font loading and once font loads load the jquery plugin and i guess it will solve your issue.
-
Please rate my design
navigation hover looks bit abrupt. and get free quote box is also looks bit heavy. make it slim. other then that overall looks good.
-
AJAX Image Loader And Fade In
its kinda mix of slideshow as well as jquery image preloader plugin. you can google jquery slideshow's like that its called acoordition. although you have to actually trick to use accorditions like the site. but if you play well you can master …
-
Image reload problem
well you can learn about jquery at jquery.com as well as there are many jquery tutorial site's just search in google. you will get thousands just learn the basics and for your problem there is jquery plugin called preloader which can load image…
-
IE7 Form problem
well source doesnot seems to be formatted. if you can use tool like pastebin.com and paste your source there then i can find some conclusion. but at me issue could be when you are dealing with javascript in ie. "," is major problem other t…
-
why unlink not working ?
well this much is not enough to get any conclusion. if you can shade some light on what is the error and format your code and post it i guess i can figure out. from what you have said issue could be... issue could be path issue. or issue could be…
-
Puzzle of elements
use jquery puzzle plugin demo of jquery puzzle plugin
-
What is the semantic way to markup a price?
well basically you can do formatting anyway prior to html5 but in html5 you can markup them with: http://www.data-vocabulary.org/Product/"> Product name 10 $(USD) the code i have written is called microdata. google it a…