About the first screenshot, please add this line on ../components/com_community/templates/gk_style/css/gk_style.old.css
- Code: Select all
.mini-profile-details {position: relative;}
On same file, find this fragment:
- Code: Select all
#community-wrap .icon-online-overlay,
#community-wrap .icon-offline-overlay {
height: 16px;
line-height: 16px;
padding: 0 5px 0 10px;
position: absolute;
right: 0;
top: 7px;
font-size: 10px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
background: transparent url(../images/online.png) no-repeat 0 0;
}
replace with
- Code: Select all
#community-wrap .icon-online-overlay,
#community-wrap .icon-offline-overlay {
height: 16px;
line-height: 16px;
padding: 0 5px 0 10px;
position: absolute;
right: 0;
top: 0;
font-size: 10px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
background: transparent url(../images/online.png) no-repeat 0 0;
}
Let me check the other...