- 49
We have added some code to our template page layout file Columns_Two.cshtml after the
@Html.Widget("left_side_column_after_category_navigation")
code. We wanted to make an additional section with the same look. This is what we have put.
The problem is that when the site is utilizing media query's (any size smaller than 100px) the clickable title is already dropped down. How can we make it act the same as the category list where you need to click to open the category list?
@Html.Widget("left_side_column_after_category_navigation")
code. We wanted to make an additional section with the same look. This is what we have put.
<div class="block block-category-navigation">
<div class="title">
<strong>Product Guide</strong>
</div>
<div class="product-catelog">
<a href="/Content/Images/uploaded/PDFs/CATALOG_WEB.pdf" target="_blank" ><img src="~/Content/images/uploaded/ProductGuideCover_2014.jpg" width="190px" height="245px" /></a>
</div>
</div>
The problem is that when the site is utilizing media query's (any size smaller than 100px) the clickable title is already dropped down. How can we make it act the same as the category list where you need to click to open the category list?
Nate Kindom