<em>@basdim 196624 wrote:</em><blockquote>Hi,
I’m using Ja Social & i want to remove all the first line with info:
“Sunday, Oct 03rd Last update02:32:47 AM GMT …”
not only the info but all the line
Thanks
I search the forum, but i did find it. If anyone can help me with the link (thread)</blockquote>
Hi basdim,
Please go to the templates/ja_social/css/template.css file, look for this css
#ja-topbar {
border-bottom: 1px solid #2985A8;
color: #BAE1EF;
font-size: 11px;
position: absolute;
top: 0;
z-index: 16;
background: url(../images/header-bg2.gif);
}
Change it to
#ja-topbar {
border-bottom: 1px solid #2985A8;
color: #BAE1EF;
font-size: 11px;
position: absolute;
top: 0;
z-index: 16;
display:none;
background: url(../images/header-bg2.gif);
}
I think that will help !