D5 Creation Forum

Open Forum for D5 Creation's Members and Visitors

Before requesting any support Please search the Forum First. You may find your desired answer. This will save your waiting time and will save our working hour. We may not answer the question which we have already answered. You should also read our Support Policy

Re: How to make a NEW TEMPLATE, with no sidebar or header

Front Page D5 Creation Forum General Support How to make a NEW TEMPLATE, with no sidebar or header Re: How to make a NEW TEMPLATE, with no sidebar or header

#4403
D5 Creation
Keymaster
Quote:
Quote from pablocabo on May 14, 2013, 23:38
Here’s the question;

    I tried Full Width, but it still puts a “header” and “Title” on it.
    I made the entry above, but it removed all formatting, color scheme, etc… (What I did worked, but it returned a blank white page)

Three (3) questions for you
1) What is the correct PHP entry to remove those two items, but keep the color formatting, and use the WYSIWYG type Editor.
2) Is there a way to have a blank header (no “home” type links in the header)
3) Is there a way to have link in the header exclusive for that page (version putting links at the bottom of the page like i did)… refer to http://recruityourkid.com/levihagen/

Thanks,

You need not touch the Theme Files or PHP Coding. You can simply implement some CSS Styling for these, like you can add the following code in the bottom of your Specific Page Editor selecting Text Mode.

Code:
<style>
#header { display: none; }
#footer { display: none; }
</style>