Main
Index
Search
Posts
Who's
Online
Log
In

Home: Discontinued/Classic Products: Article Manager 2:
Category image next to summary

 

 


joelev
User

Dec 6, 2006, 7:31 AM

Post #1 of 4 (612 views)
Shortcut
Category image next to summary Can't Post

I would like to have the category image of each article appear to the right of the summary on all the category index pages.

I have created a two-column table to insert the image in, but it seems to change the stylesheet properties for the text of the summary. Normally, the summaries have a 10 point font, but after inserting the table, it changes to a 12 point font.

Any suggestions?


rebunkerjr
User

Dec 6, 2006, 6:43 PM

Post #2 of 4 (604 views)
Shortcut
Re: [joelev] Category image next to summary [In reply to] Can't Post

If I understand your problem correctly, essentially you would like the formatting to be different in the two columns of the table. If this is the case then I think your solution is pretty easy. Simply put a class="yourCSSclass" on the <TD> tag for each table column.

For instance:

<tr>
<td class="YourClassHere">Text 1</td>
<td class="YourOtherClassHere">Text 2</td>
</tr>

by replacing the YourClassHere and YourOtherClassHere with your actual CSS styles you will be able to format the rows independently.

Hope this helps.


Donna
Staff / Moderator


Dec 8, 2006, 10:11 AM

Post #3 of 4 (588 views)
Shortcut
Re: [joelev] Category image next to summary [In reply to] Can't Post

Hi there,

What rebunkerjr has mentioned sounds like it'll probably help fix up your problems. If not, can you let me know what your current code is? With that, I can take a look and see what's going on. :)

Donna

--
support@interactivetools.com


joelev
User

Dec 16, 2006, 8:21 AM

Post #4 of 4 (559 views)
Shortcut
Re: [Donna] Category image next to summary [In reply to] Can't Post

Thanks rebunkerjr and Donna.

It works fine now that I placed the proper code in the proper table cells.