This Knowledge Base article pertains to a premium Editor's Desk account, which allows users far more customization options beyond a basic account. The premium level account includes integration of HTML, CSS, and JavaScript to refine your widgets. If you'd like more information about how you can take advantage of our robust version of Editor's Desk, please contact Craig Lachman. His contact information is included in the confirmation email that is sent to you when you sign up for a basic Editor's Desk account.
In the CSS pane of Editor's Desk (located within the Design tab of a widget), look for any style parameters that modify ng_postTitle or ng_postInfo in any way. The ng_postTitle dictates what the article link title will look like, wheras the ng_postInfo parameters will change the way the publish date and feed title look.
As an example, the following class is set by default to show the post info (article publish date) in a shade of grey:
.ng_summaryList_${BuzzId} .ng_postInfo {
font-size:80%;
padding:3px 0px 3px 0px;
color:#808080; /* text color of the article publish date*/
}
You can change the color (in this case, to dark blue):
.ng_summaryList_${BuzzId} .ng_postInfo {
font-size:80%;
padding:3px 0px 3px 0px;
color:#000066; /* text color of the article publish date*/
}
Or add other parameters to refine the look of the font:
.ng_summaryList_${BuzzId} .ng_postInfo {
font-size:80%;
padding:3px 0px 3px 0px;
color:#000066; /* text color of the article publish date*/
text-decoration:underline;
font-weight:bold;
}
If you have additional questions, or need personalized help on this topic, please send an email to Private Label Support.