How to use Set Block Styles: CSS ID

Permalink
First, I would like to learn the best way to search for the help I am requesting so I can minimize postings.

What I am seeking is how to use the Set Block Styles | CSS. I see a property, CSS ID. Do I import a CSS file? If so, where/how do I import it? File manager?

I want to have a table in a Content Block and have custom CSS settings. The easiest would be to have inline CSS and edit that with the HTML option in the editor, but having a CSS seems to be a better style. However, if I have to import it with the file manager every time I make a change, that would not be very convenient.

Thoughts?

Todd

rtcary
 
exchangecore replied on at Permalink Reply
exchangecore
You could just use the "Additional CSS" in the Design section under CSS, and simply put your css rules in there just as you would inline css.

Then you could save this as a preset for use when you create other blocks.
rtcary replied on at Permalink Reply
rtcary
I have a table with some lines like
<tr>
<td class="m_td">
<p class="m_p"><strong>Abernethy, Bruce:</strong> Grant Writer/Education</p>


Do I need to put the style tags around the css e.g.
<style>
  td.m_td {
    padding-left: 5px; color: #000066; font-family: tahoma,arial; font-size: 10pt; vertical-align: top;  
  }
  p.m_p {
    color: #000080; font-family: tahoma,arial; font-size: xx-small; vertical-align: text-top; margin: 0 0 2px 0;  
  }
</style>