I'm having one of those moments when you know you're missing something, somewhere but can't figure it out. It's driving me mad.
Surely it can't be that complicated but where is this <'div class = 'logo'> coming from?
Here's the code on the site:
But the layout code for the Regular header Area just has
So it's not in there
and the Regular Logo Layout has
so it's not in there either
and the Brochure Logo Image and Company Logo Image layouts just have
and
so it's not in those either!
It must be coming from somewhere? Anyone have any ideas?
And the <span class='set-left'> and closing tags are the same. Hidden away somewhere.
Mike
Surely it can't be that complicated but where is this <'div class = 'logo'> coming from?
Here's the code on the site:
Code:
<div class="header-area">
<div class="headerContent">
<!-- Company Logo -->
<div class='logo'>
<span class='set-left'>
<a href="index.html">
<img src="acatalog/FTLOGO2015B.gif" width="301" height="120" border="0" alt="Fly Fishing Tackle" title="First Tackle Fly Fishing Tackle" class="logoimageB">
</a>
</span>
</div>
<!-- Logo end -->
Code:
<div class="headerContent"> <!-- Company Logo --> <actinic:variable formatting="div,style|logo" name="LogoLayout" /> <!-- Logo end -->
and the Regular Logo Layout has
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Brochure%22" > <actinic:variable formatting="style|set-left" name="BrochureLogoImage" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Brochure%22" > <actinic:variable formatting="style|set-left" name="CompanyLogoImage" /> </actinic:block>
and the Brochure Logo Image and Company Logo Image layouts just have
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22HomePageType%22%20%2f%3e%20%21%3d%20%270%27"> <a href="<actinic:variable name="HomePageURL" />"> </actinic:block> <img src="<actinic:variable name="BrochureLogo" />" width="<actinic:variable name="BrochureLogoWidth" />" height="<actinic:variable name="BrochureLogoHeight" />" border="0" alt="<actinic:variable name="StoreName" />" title="<actinic:variable name="CompanyName" /> <actinic:variable name="StoreName" />" class="logoimageB"> <actinic:block if="%3cactinic%3avariable%20name%3d%22HomePageType%22%20%2f%3e%20%21%3d%20%270%27"> </a> </actinic:block>
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22HomePageType%22%20%2f%3e%20%21%3d%20%270%27"> <a href="<actinic:variable name="HomePageURL" />"> </actinic:block> <img src="<actinic:variable name="CompanyLogoFileName" />" width="<actinic:variable name="CompanyLogoWidth" />" height="<actinic:variable name="CompanyLogoHeight" />" border="0" alt="<actinic:variable name="StoreName" />" title="<actinic:variable name="CompanyName" /> <actinic:variable name="StoreName" />" class="logoimage" /> <actinic:block if="%3cactinic%3avariable%20name%3d%22HomePageType%22%20%2f%3e%20%21%3d%20%270%27"> </a> </actinic:block>
It must be coming from somewhere? Anyone have any ideas?
And the <span class='set-left'> and closing tags are the same. Hidden away somewhere.
Mike
Comment