Jump to content

help with modifying my theme (datasheet)


Recommended Posts

Hello, wondering if anyone can help me a bit. with the "datasheet" i have no programing skill only know how to modify :-(

When I visit my page via an ipad or mobile, there is a button where you can close and open the whole tab, but not if I visit the site via a computer.

and it is difficult to change it to have  the tab closed as default?

I run prestashop 1.5
Is a purchased theme (Responsive)

 

 

 

products.css

DATA SHEET************************************************************************************************ */
.datasheet ul {  padding: 0px 10px 0px 10px;  list-style: none;}
.datasheet ul li {  padding: 0px 0 7px 0px;  color: #333;  font-style: italic;  font-size: 17px;}
.datasheet ul li span {  font-weight: bold;  color: #333;  font-size: 14px;  font-style: normal;}

product.tpl

{if $features}
<section class="page_product_box toggle_frame datasheet">
    <h3 class="toggle">{l s='Data sheet'}<i class="icon-toggle icon-minus-sign-alt"></i></h3>
        <div class="toggle_content">
            {if isset($features) && $features}
                <ul  class="bullet">
                    {foreach from=$features item=feature}
                        {if isset($feature.value)}
                            <li><i class="icon-angle-right"></i> <span>{$feature.name|escape:'htmlall':'UTF-8'} - </span> {$feature.value|escape:'htmlall':'UTF-8'}</li>
                        {/if}
                    {/foreach}
                </ul>
            {/if}
        </div>
</section>
{/if}

 

 

 

 

I really appreciate all the help I can get

 

//Mattas

problem.jpg

Edited by mattias.pedersen (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...