Ok i have this image called create new topic http://beta.kcchristians.com/forums/viewforum/1
However, i can't get it to move to the right side?!?!?
.topic_table {
width: 100%;
text-align: right;
}
.topic_table td {
text-align: right;
align: right;
}
Thats my code.
Thank you for any help you can provide.
Align
I couldn't find the .topic_table selectors in your style.css. If that's not the problem (oh how easy that would be!), I'd approach the problem differently. Why do you want to use a table here anyway? You're not tabulating data and you only have one row! I would just use a div. That is:
#newTopic { text-align: right; } <div id = "newTopic"><img src="blablabla"></div>
Thus, the div you create will stretch the entire width of your column (it should - I didn't look that closely into how you structured your tables), then push its contents (the image) right.
And no, I don't know why your <td align = "right"> didnt work - I don't know too much about table design. Good luck! - Jen