Forum Replies Created

Viewing 1 replies (of 1 total)
  • You don’t need to decode it, just edit the CSS. You’re just trying to remove the obnoxious links at the bottom right?

    Just go to style.css, search for footer, and you’ll see the .left and .right sections
    just add display:none; to each section, and it goes away. no decoding necessary hehe.

    .left{
    display:none;
    float:left;
    padding: 5px 0 0 10px;
    font-size:11px;
    }

    .right{
    display:none;
    float:right;
    font-size:11px;
    padding: 5px 10px 0 0;
    }

Viewing 1 replies (of 1 total)