Advertisement
-
Posts
92 -
Joined
-
Last visited
-
Days Won
2
Community Answers
-
bandnan's post in chatbox scrollbar was marked as the answer
remove the body tag from the
::-webkit-scrollbar-corner{background:transparent} e Webkit scrollbar.
example
change:
body::-webkit-scrollbar{width:0.775em;}body::-webkit-scrollbar-thumb{background-color:crimson;} to
::-webkit-scrollbar{width:0.775em;}::-webkit-scrollbar-thumb{background-color:crimson;} and you can add
::-webkit-scrollbar-corner{background:transparent} to remove the white box
-
bandnan's post in IP.Downloads Description Removal (help) was marked as the answer
Under Acp > Look And Feel > your templete > downloadsPortal > downloadsPortal
Look for
<br /><br /><span class='desc'>{IPSText::truncate( strip_tags( IPSText::getTextClass('bbcode')->stripAllTags( $featured['file_desc'] ), '<br>' ), 120 )}</span> And Replace with
<!-- <br /><br /><span class='desc'>{IPSText::truncate( strip_tags( IPSText::getTextClass('bbcode')->stripAllTags( $featured['file_desc'] ), '<br>' ), 120 )}</span> --> -
bandnan's post in How to make separate colum like this? was marked as the answer
This is done with css, under acp --> look and feel --> your template --> css --> ipb_style.css and search for
table.ipb_table td {padding: 10px; } then add
border-bottom: 1px solid #E6DDDD; border-right: 1px solid #E6DDDD; on the end, should look like this
table.ipb_table td { padding: 10px; border-bottom: 1px solid #E6DDDD; border-right: 1px solid #E6DDDD; }