I would like to remove my navbar from my site but how would I have to do it?
I'm posting a pic below marked with red lines of the part I wish to remove.
Why does every suggest that people delete code from templates? If you decide to add the nav bar back at a later date then you won't be able to u less you revert the template. You should comment out the lines instead.
Why does every suggest that people delete code from templates? If you decide to add the nav bar back at a later date then you won't be able to u less you revert the template. You should comment out the lines instead.
Not true at all. When you go to edit the template, just click the link that says View History and you can see a comparison of your customized template and the default template OR you can just click Show Default to see the default template and grab the code to copy/paste it back in.
First off, // is what you use to comment out PHP code or javascript, not HTML, so that won't work in templates. Secondly, what does work is using <!-- stuff here --> , however, sometimes those will cause issues if used in the middle of a table. Also, if you are wanting to make something so a user cannot see the information, then using comment tags will just put the information into the page source, so it is still there and a user can view it by looking at the page source. I don't think that is the case here, but sometimes that is the case and so you wouldn't want to just comment the information out.
Secondly, what does work is using <!-- stuff here -->
Sorry to reply again, i did not get this ?
Quote:
if you are wanting to make something so a user cannot see the information, then using comment tags will just put the information into the page source, so it is still there and a user can view it by looking at the page source
Thanks for clarifying this most important piece of information... Never ever looked after commenting those templates.
Thanks a lot again...