View Single Post
  #5  
Old 25th April 2015, 19:12
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
a little bit to make it a tad interesting if people think that the main area is to flat above all the news just go find the following:

Code:
<div class='myBlock-cap'><span style='font-weight:bold;font-size:12pt;'>{$lang['news_title']}</span>{$adminbutton}</div>
then replace with:

Code:
<div style='margin-top: 5px;box-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.2);'>
    <div class='myBlock-cap'><span style='font-weight:bold;font-size:12pt;'>{$lang['news_title']}</span>{$adminbutton}</div></div>
it should make it appear like this:

Click the image to open in full size.

then it should kinda look more appealing well it does in my eyes.

Small Fix:

Find:
Code:
 $HTMLOUT .= "<div class='myBlock-con'>".format_comment($array['body'])."</div><div></div></div><br />\n";
Replace With:
Code:
$HTMLOUT .= "<div class='myBlock-con'>".format_comment($array['body'])."</div><div></div></div><div style='padding: 1.5em;'></div><div style='margin-top: -35px;'></div>";
OutCome -
Click the image to open in full size.

You will notice it makes the bottom more neater and brings it up closer then using <br /> tags as you will have noticed it gave it a massive gap at bottom well that shouldn't be a issue anymore ;)

Last edited by BamBam0077; 25th April 2015 at 21:55. Reason: Added Small Fix
Reply With Quote
The Following 2 Users Say Thank You to BamBam0077 For This Useful Post:
DarkSnow (2nd September 2015), Demon-Cod3rs (25th April 2015)