Hi Guys,
I am trying to hide the date time from the Latest portfolio widget. As mentioned in various posts I tried the follwoing code in Quick CSS
.news-time {
display: none;
}
However nothing changes.
My complete Quick CSS Code is as follows.
#top .title_container .container {
padding-top: 0;
padding-bottom: 0px;
min-height: 30px;
}
.title_container .main-title a {
font-size: 30px !important;
}
span.breadcrumb-title { display: none; }
td {
line-height: 13px;
padding: 2px 2px;
}
tr th:first-child, tr td:first-child {
width: 70px;
align: left;
}
.content {
padding-top: 5px;
padding-bottom: 0px;
}
body .column-top-margin{
margin-top: 5px;
}
.breadcrumb-trail * { color: white!important; }
.title_container {
background-color: black!important;
border: none!important;
}
.news-time {
display: none;
}
Can you please suggest