I put a frame background on the main announcement but the main CSS's <h3>
forces a background color. I'm not a CSS expert so not sure how to fix
that.
since the new feature list goes back to new things since GRASS 6.2.3
(circa 9000 edits along this branch) it is likely that some quite major
things have been forgotten, although IMO the list should not resemble a
10 page changelog with every new feature. Request for many eyeballs.
thanks to Markus & Markus for their contributions already.
I put a frame background on the main announcement but the main CSS's <h3>
forces a background color. I'm not a CSS expert so not sure how to fix
that.
since the new feature list goes back to new things since GRASS 6.2.3
(circa 9000 edits along this branch) it is likely that some quite major
things have been forgotten, although IMO the list should not resemble a
10 page changelog with every new feature. Request for many eyeballs.
thanks to Markus & Markus for their contributions already.
In CSS C stands for Cascading. Just add Your CSS rules after default
ones as later defined rules override previous rules.
Like this (after line 7 before </head>):
<style type="text/css"> h3 { background-color: transparent; }</style>
I put a frame background on the main announcement but the main CSS's <h3>
forces a background color. I'm not a CSS expert so not sure how to fix
that.
since the new feature list goes back to new things since GRASS 6.2.3
(circa 9000 edits along this branch) it is likely that some quite major
things have been forgotten, although IMO the list should not resemble a
10 page changelog with every new feature. Request for many eyeballs.
thanks to Markus & Markus for their contributions already.
In CSS C stands for Cascading. Just add Your CSS rules after
default ones as later defined rules override previous rules.
Like this (after line 7 before </head>):
<style type="text/css"> h3 { background-color: transparent; }</style>