Okay
  Public Ticket #701316
change width of columns in footer
Closed

Comments

  • Vladyslav started the conversation

    hi, where i can change columns width in footer ( new york theme) ?

  •  1,593
    Criss replied

    Hi Vladyslav,

    We receive your ticket but we're going to have 2 weekend days off. We'll be back on Monday. Sorry for our delay!

    Best Regards,
    Criss - FieldThemes

  •  1,593
    Criss replied

    Hi Vladyslav,

    We are using "Bootstrap 3" to split the footer column

    http://www.awesomescreenshot.com/image/1077158/a25e0d4fa6145a47d5e81a99b87bbdad

    Ex: col-md-3, col-md-2, ...

    You can resize columns 1, 4, 5 in BO> Fieldthemes> Manage Staticfooter

    Column 2 in file: root/themes/newyork/modules/blockcontactinfo/blockcontactinfo.tpl

    Column 3 in file: root/themes/newyork/modules/blockcms/blockcms.tpl

    Best Regards,
    Criss - FieldThemes

  • Vladyslav replied

    hi, thanks.

    and where I can change columns width in header?

  •  1,593
    Criss replied

    What's the Newyork home page you're using? You can find in:

    -/root/themes/newyork/header.tpl

    -/root/themes/newyork/modules/blockcart/blockcart.tpl

    -/root/modules/fieldblocksearch/fieldblocksearch-top.tpl

    Best Regards,
    Criss - FieldThemes

  • Vladyslav replied

    homepage №1

  •  1,593
    Criss replied

    - In "/root/modules/fieldblocksearch/fieldblocksearch-top.tpl"

    <div id="search_block_top" class=" col-md-6 clearfix">

    - In "/root/themes/newyork/header.tpl"

    <div class="logo_img col-md-3 col-sm-12">

    - In "/root/themes/newyork/modules/blockcart/blockcart.tpl"

    <div class="shopping_cart_right col-md-3 clearfix{if $PS_CATALOG_MODE} header_user_catalog{/if}">


    Best Regards,
    Criss - FieldThemes

  • Vladyslav replied

    and when its module update, i lost my changes?

  • Vladyslav replied

    can i override templates?

  • Vladyslav replied

    and i find bug, i can't wrap div with content in tag <a>

  •  1,593
    Criss replied

    - Yes, when any module update, the modify'll be lost.

    - <div> isn't valid inside <a>

    You should add <a> tag for each element in <div>

    Best Regards,
    Criss - FieldThemes

  • Vladyslav replied

    Hi, this is my code 


    <div class="banner-static">
        <div class="container">
            <div class="row">
                <div class="banner-center">
                    <div class="col1 col-xs-12 col-sm-12 col-md-8">
                        <div class="row1">
                            <div class="img1">
                                <a href="#">
                                    <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner1.jpg" alt="" width="770" height="227" />
                                    <div class="img-content img-content-1">
                                        <h4 class="title">Un moment délicieux</h4>
                                        <p class="text-content">Un moment délicieux</p>
                                        <p class="link">voir la gamme</p>
                                    </div>
                                </a>
    
                            </div>
                        </div>
                        <div class="row2">
                            <div class="col-md-6 col-sm-6">
                                <div class="img1">
                                    <a href="#">
                                        <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner3.jpg" alt="" width="370" height="227" />
                                        <div class="img-content img-content-2">
                                            <h4 class="title">Pimentez vos recettes</h4>
                                            <p class="link">l’univers des épices</p>
                                        </div>
                                    </a>
    
                                </div>
                            </div>
                            <div class="col-md-6 col-sm-6">
                                <div class="img1">
                                    <a href="#">
                                        <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner4.jpg" alt="" width="370" height="227" />
                                        <div class="img-content img-content-3">
                                            <h4 class="title">A chacun son huile</h4>
                                            <p class="link">A chacun son huile</p>
                                        </div>
                                    </a>
    
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="col2 col-xs-12 col-sm-12 col-md-4">
                        <div class="img3">
                            <div class="around">
                                <a href="#">
                                    <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner2.jpg" alt="" width="370" height="484" />
                                    <div class="img-content img-content-4">
                                        <p class="text-content">Tous les petits plaisir</p>
                                        <h4 class="title">Tous les petits plaisir</h4>
                                        <p class="link">Tous les petits plaisir2</p>
                                    </div>
                                </a>
    
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

     and this what i have in the  DOM ( i cant wrap into link (tag <a></a>) custom content in the div). please see the image



  •  1,593
    Criss replied

    You can use:

                            <div class="img1">
                                    <a href="#"><img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner1.jpg" alt="" width="770" height="227" /></a>
                                    <div class="img-content img-content-1">
                                        <h4 class="title">Un moment délicieux</h4>
                                        <p class="text-content">Un moment délicieux</p>
                                        <p class="link">voir la gamme</p>
                                    </div>
                            </div>

    Or:

                            <div class="img1">
                                    <img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner1.jpg" alt="" width="770" height="227" />
                                    <div class="img-content img-content-1">
                                        <h4 class="title"><a href="#">Un moment délicieux</a></h4>
                                        <a href="#" class="text-content">Un moment délicieux</a>
                                        <a href="#" class="link">voir la gamme</a>
                                    </div>
                            </div>
    

    Or:

                                    <div class="img1">
                                    <a href="#"><img class="top" src="http://laboutiquedemarius.dev/img/cms/b-banner1.jpg" alt="" width="770" height="227" /></a>
                                    <div class="img-content img-content-1">
                                        <h4 class="title"><a href="#">Un moment délicieux</a></h4>
                                        <a href="#" class="text-content">Un moment délicieux</a>
                                        <a href="#" class="link">voir la gamme</a>
                                    </div>
                            </div>
    

    Best Regards,
    Criss - FieldThemes

  • Vladyslav replied

    thanks, but your's variants unsuitable ((   i cant wrap any block into link in this editor?

  •  1,593
    Criss replied

    We think don't have any solution.

    Best Regards,
    Criss - FieldThemes

  • Vladyslav replied

    can i add fieldmegamenu into footer?

    and new york theme has a social links module?

    thanks.

  •  1,593
    Criss replied

    No, Module fieldmegamenu have many TPL & JS  & it can display in header only, we're sorry.

    Best Regards,
    Criss - FieldThemes

  • Vladyslav replied

    how i can add some custom menu with categories into footer?

  • Vladyslav replied


    how can i add social links into  nav_block 1.2

     thanks.

  •  1,593
    Criss replied

    You can use column "EXTRAS" to add links to your categories. 

    Best Regards,
    Criss - FieldThemes

  • Vladyslav replied

    hi, can i add some custom block like banner-home1 to the product page?

  •  1,593
    Criss replied

    yes, you can. If you know how to use prestashop "hook". You can add $HOOK_BLOCKPOSITION1, $HOOK_BLOCKPOSITION2, $HOOK_BLOCKPOSITION3, $HOOK_BLOCKPOSITION4 to any page you want.

    Best Regards,
    Criss - FieldThemes