You're going to have to edit 'toptitle.gif.' and make it bigger. What I would actually do is just use border radius: http://www.css3.info/preview/rounded-border/ and just add a border.
So in sdmenu.css, change:
Code:
div.sdmenu div:first-child {
background-position: 0% 0%; color: #fff;
text-decoration: none;
font-family:Arial;
text-align: left;
font-size: 11pt;
background-image:url('toptitle.gif');
background-repeat:no-repeat;
background-attachment:scroll
}
to:
Code:
div.sdmenu div:first-child {
background-position: 0% 0%; color: #fff;
text-decoration: none;
font-family:Arial;
text-align: left;
font-size: 11pt;
background-image:url('title.gif');
border-top-right-radius: 5px;
border-top-left-radius: 5px;
background-repeat:no-repeat;
background-attachment:scroll
}
Give that a try.
Bookmarks