Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
|
Corey you have to be a little more patient especially on weekends. It gets slow around here sometimes. I think I spoiled you by answering so fast before.
I'm not seeing the images at the moment. Did you take them out? Were you placing them above the (Place videos here) text?
How far were they from the left? Is your image cropped tight to how you want it to display? The image should by default be aligned to the left. It looks like the table cells have been giving a padding of 4px all around in the css. Was the image just slightly off the left edge? If so then it's probably the padding that's causing the issue.
What I would do is assign a class to the table cells that will have the image. Your code would look like
<td class="image-heading">
You can give the class most any name you want. Then you'll have to find where the css file is and add
td.image-heading {padding: 0}
Again you can give the class a name of you're choosing, but it will need to be the same in the html and the css. That should work assuming it was the 4px that were the problem.
I think the background color is being controlled in the PHP. I'm guessing a little, but I think where the PHP is creating the table cells it has code to give every other row a different background color. You probably don't want to change that though since there might be places where you do want that alternating color in the forum.
What you can do is add to the css above
td.image-heading {padding: 0; background-color:#fff}
which should make the background color of these specific cells white. You can obviously change the background-color to the color of your choice.
Hopefully that all works.
|