Backup below files before editing.
Find File: /templates/gk_game_magazine/css/template.css
Find Line: 83
Which is below
- Code: Select all
/* Suffixes */
.box,
.box_text { overflow: hidden; margin-top:20px; }
Delete overflow:hidden; so it looks like below
- Code: Select all
/* Suffixes */
.box,
.box_text { margin-top:20px; }
Find Line: 88
Which is below
- Code: Select all
.box > div,
.box_text > div { overflow: hidden; }
Delete them
So your final code should look as below
- Code: Select all
/* Suffixes */
.box,
.box_text { margin-top:20px; }
.box:first-child,
.box_menu:first-child,
.box_text:first-child { margin-top: 0!important; }
.box_content { padding: 0; overflow: hidden; color:#555; font-size:13px; line-height:1.2; }
.box li,
.box_text li { line-height: 28px; font-weight:normal; padding-left: 28px; background: transparent url('../images/bullet.png') no-repeat 0 7px; }
.box li a,
.box_text li a { text-decoration: none; }
.box a,
.box_text a { text-decoration: none; }
/*--- default */
See you around...