I'm not digging into the CSS or PHP files much at all b/c I am not super experienced. Without doing that can you tell me how to round the corners using your tool on any block that has a colored background?
Just look for the "ID" or "class" of the DIV tag you wish to edit. For example, if the coloured background code looks like this: <div id="myname">something</div>
Then the selector you place into the rounded corners block is "#myname".
If your code looks like this:
<div class="myname">something</div>
Then use the following selector in the rounded corners block: ".myname".
I sifted through the HTML and found what I thought would work. Tried #fbackground, but that did not work. Sort of at a loss. There must be others out there that just want to take a block to which a colored background via Design and put rounded corners on it. Should be the same for everyone using C5. Or is it not?
No "." in front of the "h1" - you only add a "." if selecting a "class". the "#" is used to select an "ID". If selecting a built-in HTML element such as "h1", "h2", "span", "div", etc then no dot or hash is needed.
PS. A "h1" element should be a "block" element by default in HTML, but if the rounding doesn't work, your template may be forcing the H1 to use "inline" display instead. If that occurs, just check your template's CSS file.