ashlvsya Posted May 26, 2004 Posted May 26, 2004 All the Q's I need to finish me site I need to ask in here. How do you tile a image as a background? And how do I get rid of this bar? Last question. Where can I find a good CSS Guide explaining what values change what. I remember someone published a Invision Power Board One.
agiftcodotcom Posted May 26, 2004 Posted May 26, 2004 You can add an image in stylesheet.css You can remove that bar in catalog/includes/footer.php Contributions I used : Updated 06-13-04 23:42 ---------------- Vote on My Graphis Poll
ashlvsya Posted May 26, 2004 Author Posted May 26, 2004 How do I add a image in stylesheet? Just use html?
agiftcodotcom Posted May 26, 2004 Posted May 26, 2004 Did you learn how to add images? If not, use this in your CSS sheet where you want a background to appear... background-image: url(file/file/imagename.jpg); background-attachment: fixed; background-repeat: repeat; For example, this .infoBoxContents { background: #f8f8f9; font-family: Verdana, Arial, sans-serif; font-size: 10px; } Would become this .infoBoxContents { background-image: url(file/file/imagename.jpg); background-attachment: fixed; background-repeat: repeat; font-family: Verdana, Arial, sans-serif; font-size: 10px; } I'm not sure which style go to which area, so you might want to just play with them until you find where you are wanting to adjust. Of course, you will want to backup your original css sheet. What I personally do is first adjust the color (i.e. #f8f8f9) to a very obvious color (i.e. #000000) and see what changes on my site. If I hit the correct area, I will then put in the URL for the background. If I hit the wrong area, I will simply change the color back to what it was. Contributions I used : Updated 06-13-04 23:42 ---------------- Vote on My Graphis Poll
Recommended Posts
Archived
This topic is now archived and is closed to further replies.