Hi there, I'm looking for a little guidance on the border radius issue for the header area. I've been looking through the forums and found several solutions offered, none of which have worked for me. I was fiddling with my own work-around and have been partially successful, however I have not been able to set any ID on the content element to target one rather than all. I'm guessing it is most likely my syntax so I would really appreciate it if someone would be willing to take a look and give me a fresh perspective that might resolve the issue. [see img attached].
.page-canvas { border:none; border-radius:15px 15px 15px 15px; } .thepage .content { border-radius: 15px 15px 0 0; } #branding .content-pad { border-radius: 15px 15px 0 0; background: #ffffff; /* for non-css3 browsers */ background: -webkit-gradient(linear, left top, left bottom, from(#EAEAEA), to(#ffffff)); background: -moz-linear-gradient(top, #EAEAEA, #ffffff); background-image: -o-linear-gradient(top, #EAEAEA,#ffffff); background-image: -ms-linear-gradient(top, #EAEAEA, #ffffff); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EAEAEA', endColorstr='#ffffff'); } Any time I try to add one of the IDs so as not to affect EVERY content element, it fails. I've tried adding the header ID as well as branding ID. I'm going nuts trying to figure out how to JUST effect the first div area. I understand it has to do with layers and choosing the right ID to avoid effecting all the content areas, I just have have not been successful in targeting either the header or branding ID's.
Thank you!