many guys know to change the font color,background color using php....but how about font background image?have you heard of this before?is it possible to change the font property so that it should have a background image??? think think think
This is not done with PHP, it's done with HTML/CSS. There's no attribute to change the font's background (I think), just wrap a div around it.
Put your text into a paragraph tag and then use CSS to give that a background image... It has nothing to do with PHP!
Remember PHP is server-side, HTML is client-side... But one way would be to define the colour within a variable and then echo that in all the color values of your html tags.
hello sarhk thanks alot for your good response...well without using gd is it possible to change shadow properties?....!! just curious to know?if it is possible ! i have many creative ideas to implement on my scripts...
You can use shadows in CSS3 (beware, not all browsers support this currently) You can find more information at http://www.css3.info/preview/box-shadow/ Regards, Steve
Like the others, I was trying to work out how PHP was going to fiddle with something that was a clientside effect. If you're not using GD then you are really looking at clientside technologies like CSS