I am sorry, if it does not make sense to you. I am new developer working on existing WordPress blog.
existing sidebar has title with tag <h3> with rounded corners, I have no idea how it is done!
I need to keep rounder corners on top left and top right, but need to remove on the bottom left and right.
when I got to firebug, I got the code as follow:
<li id="recent_posts" class="widget">
<h3 style="position: relative;">
Recent Posts
<div class="canvas" style="display: inherit">
<canvas style="position:absolute;top:-0px;left:-0px;" height="8px" width="8px"></canvas>
<canvas style="position:absolute;top:-0px;right:-0px;" height="8px" width="8px"></canvas>
<canvas style="position:absolute;bottom:-0px;left:-0px;" height="8px" width="8px"></canvas>
<canvas style="position:absolute;bottom:-0px;right:-0px;" height="8px" width="8px"></canvas>
</div>
</h3>
when I delete the two canvas in Firebug, then I got my result. But I did not find any thing in style.css to do this.
any idea?
thanks in advance!
skystar