Hei Baieti,
Am primit de la o cerinţă de afaceri pentru a schimba culoarea de fundal a titlului webpart pentru Out of Box webparts. Apoi am început să caut pe CSS-am găsit următorul clasa CSS care suprascrie stilul de WebPart titlul.
.ms-WPHeader TD
{
border-bottom:0px solid # 4e7cb7;
border-colaps:colaps;
}
Change this class as per your requirement then you are done….
.ms-WPHeader TD{
înălțime:40px;
background-color: #0174DF;
font-size: larger;
font-weight: bold;
border-bottom:0px solid # 4e7cb7;
border-colaps:colaps;
}
Hi Uday…..
I am adding webparts on my Page Programatically……so
System.Web.UI.WebControls.WebParts.WebPart HelloWP = new Hello.HelloWebpart;
HelloWP.Title = “My Webpart”;
mgr.AddWebPart(HelloWP, “Left”, 0);
(mgr is my WebpartManager)
now how can i set the CSS to my webpart….???