Log in

View Full Version : can i link a file in css??? plz help



lastpirate007
07-27-2007, 08:28 AM
hi everybody

i want to insert a image menu in zencart. it is all guided by css. so can include php file in css???

pilas14
07-27-2007, 03:48 PM
Sure! I'll just give you an example of how I use this function to link to my background image.


{background: transparent url(notebook.png) no-repeat; /* Comments go here */

If you want it to repeat horizontally it is not no-repeat but instead you replace that with repeat-x. For vertical, it's repeat-y.

Hope that helps.