LoadFooV2 - Page Template. Blue block?? Help pls!

Permalink
Hi Everyone,

I am using and enjoying Concrete5.

My website is herewww.www.surbitonpostalrifleclub.com...

I am using the superb LoadFooV2 theme, but I have a small problem I hope someone can help me out with.

On the default page / and any new page I create under the LoadFoo template has these annoying blue blocks aligned down the right handside of each page.

For now I have been trying to fill them with content!! But ideally I would like to get rid of them on some pages!

I know its possible! I just dont know how! Can someone help me please?

An example would be this page... I would love to be able to remove the right hand blue blocks on this page
http://www.surbitonpostalrifleclub.com/sprc/index.php/sprc_forums/...

Thanks

ADK : )

ADK
 
elyon replied on at Permalink Reply
elyon
You could try using a different page type. It looks like you are probably using the right sidebar page type, but you could try making the page full width.

If you really like the alignment of the right sidebar page type but you want those graphics to disappear, you could consider the code of that sidebar:

(nevermind the PHP tags ... these code samples are HTML)

<div id="right" > 
        <div class="box">
         <div class="boxInner">
         </div>
        </div> 
        <div class="box">
         <div class="boxInner">
         </div>
        </div>      
    </div>


You could go as far as creating a custom page attribute to hide the sidebar, and read this in your theme, etc. Or you could throw together a quick script change:

<style type="text/css">
.box { display: none; }
</style>


or:

<style type="text/css">
.box { background-color: transparent; border: none; }
</style>


Etc. You might have to code that's slightly different, but you get the general idea. If you want to keep the right sidebar without the sidebar graphics, you could add an HTML block and put in a little bit of code to remove those graphics.
Mnkras replied on at Permalink Reply
Mnkras
if you want me to i can make a custom page type if you want just email/PM me from my profile

Mike