How to add an image in the forum table cells
You can now easily add images to the forum table cells, which show on the index page, as well as in the post views. Below is a screenshot showing the tables, boxed off in colors:
Only registered users can see links on this forum! Register or Login on forum! |
The side on the left is called, in the css style sheet, "td.row.1"
The side on the right is called, in the css style sheet "td.row.2"
Put the following code in the Admin Panel>General Admin>ForumUp>HTML codes on top and bottom of all forum pages>Code at the bottom of the forum, after all topics.:
| Code: |
</* Main table cell colors and backgrounds */-->
<style type="text/css">
td.row1 { background-color: #FFF9B3;
background-image: url(http://urlofyourimage); }
td.row2 { background-color: #FFF799;
background-image: url(http://urlofyourimage);}
//--></style> |
Replace "http://urlofyourimage" with the full url of your image. Be sure the image is on your own webspace or online image storage account. Do not simply copy the url of an image from someone else's website.
Do have a background color selected for each section, in case the server where your image is has a problem, and the image does not show temporarily.
Written by gg'ssimon