• Resolved Wavegaming

    (@wavegaming)


    Hiya, my site is https://wavegaming.net/, and there are two things that annoy me in my theme:

    First, if you scroll all the way down you’ll see two small patches of plain white (below the page navigation). I want to get rid of those somehow. What was in those were a twitter status widget and a recent comment widget but i got rid of them, yet those white patches still are there

    </div>
    
    <div id="subox">
    <div class="sboxleft sblist">
    	<div class="clear"></div>
    </div>
    
    <div class="sboxright sblist">
    	<div class="clear"></div>
    </div>
    
    </div>

    causes it. I tried removing that piece of code altogether but it messes up the whole sidebar.

    Second thing is another small white patch but this time below the lower advertisement on the sidebar. What i did there was basically paste a google adsense script on a text widget.

    Any help would be much appreciated, thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try hiding it by adding to your style.css at the bottom

    #subox{
        display: none;
    }

    HTH

    David

    1. Try just removing:

    <div id="subox">
    <div class="sboxleft sblist">
    	<div class="clear"></div>
    </div>
    
    <div class="sboxright sblist">
    	<div class="clear"></div>
    </div>
    
    </div>

    2. Edit style.css:

    .sidebox {
    background:#FFFFFF;
    color:#444444;
    font-size:12px;
    margin:10px 0 0;
    padding-bottom:10px;
    width:155px;
    }

    and remove padding-bottom:10px;.

    Thread Starter Wavegaming

    (@wavegaming)

    Thanks so much guys!

    @adeptris your solution got rid of the ‘Popular Articles’ and ‘Random Articles’ as well

    @esmi your solution worked, thank you very much!

    No problem ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Getting rid of two annoying things’ is closed to new replies.