Ei vaikinai,
Gavau reikalavimas iš verslo pakeisti fono spalvą webpart pavadinimą, nes iš Box webparts. Tada aš pradėjau ieškoti CSS radau tokią CSS klasę, kuri atsveria WebPart antraštinės stilius.
.MS-WPHeader td
{
border-bottom:0px solid # 4e7cb7;
sienos griūties:žlugimas;
}
Change this class as per your requirement then you are done….
.MS-WPHeader td{
aukštis:40px;
background-color: #0174DF;
font-size: larger;
font-weight: bold;
border-bottom:0px solid # 4e7cb7;
sienos griūties:žlugimas;
}
Labas 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….???