So far what I have done is made a copy of the default profile themes (the ones from ~/themes/profile_themes/default) and renamed them this copy as my_theme (original eh?). In here, I’ve changed “html_header” and “html_footer” to match the rest of the site’s look and feel. Now when I go to navigate to “../index.php/member/login” in my browser, I get the log in form and it looks like it’s part of the rest of site.
I can change the header of this page by editing “html_header.html”, the footer by editing “html_footer.html” and the log in form itself by altering “login_form.html”. The file “member_page.html” seems to control how it’s all put together :
{include:html_header}
<div id="content">
{include:member_manager}
</div>
{include:html_footer}
However when it’s rendered, I always get two extra unexpected lines between “html_header.html” and “login_form.html”. For example, for “../index.php/member/login” these lines are
<div class="heading">Login</div>
<div class='breadcrumb'><a href="#">home</a><span class="breadcrumbspacer"> > </span><span class="currentcrumb">Login</span></div>
And it’s these two lines that are causing my frustration. So far I’ve only tried
“../index.php/member/login”
“../index.php/member/register” &
“../index.php/member/forgot”
and there are similar lines there as well. What I’m trying to find out is, are these lines set somewhere in EE that I’ve missed? Can they be edited? Turned off? Or is there a tag that references lines so I can use them in “html_header.html”?
The site has a very stylised look for headings that I’m trying to replicate and I can’t do it with the html code that gets rendered at the moment because both of these lines are wrapped in table row html. If I can’t style them, then I’ll need to find a way to turn them off.
P