Activity › Forums › Web Design (WordPress, Joomla, etc.) › Formatting text in a dreamweaver CS5 table
-
Formatting text in a dreamweaver CS5 table
Douglas Welbar replied 11 years, 11 months ago 4 Members · 13 Replies
-
Fernando Mol
February 16, 2012 at 2:37 amOK. You are using a SpryTooltip. This changes the panorama, because you probably have an specificity problem.
This is the rule that is defining the color of the text in your table:
#SongLinerNotes td {
color:#333;
}What you want is to change the color of the text in some table cells.
You need to create a class for them. So, to avoid any specificity problems, add a very specific compound rule for the class in that table. Something like this:
#SongLinerNotes td .differentcolor {
color:#666;
}Then, add the class to the table cells you need to have it.
That should work
-
Ross Smith
February 21, 2012 at 8:57 amEdit the table using Add or edit accessibility. We make good use of it at mikannie.com.au
Reply to this Discussion! Login or Sign Up