• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Business Catalyst and Bootstrap

Community Beginner ,
Jan 08, 2014 Jan 08, 2014

Copy link to clipboard

Copied

Hi all,

I am updating one of my BC sites to use Bootstrap as a test, as I feel responsive features are important for site visitors and Bootstrap stops me having to reinvent the wheel on every site. All is well except when trying to get the V2 menus with dropdowns to work with Bootstrap (cannot change the class for dropdown <ul> list items into a Bootstrap friendly class). Has anyone managed to get this working, or have a work around as it is the only thing stopping me from rolling out Bootstrap on all of my customers sites.

P.S. any knowledge gained will of course be shared on this thread.

Regards

Ken

TOPICS
How to

Views

2.2K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Jan 08, 2014 Jan 08, 2014

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 30, 2015 Jul 30, 2015

Copy link to clipboard

Copied

Hi Ken,

Did you find out a way to add dropdown with bootstrap template in business catalyst? Please reply. Thank you.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jul 30, 2015 Jul 30, 2015

Copy link to clipboard

Copied

Read the post from Simon.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 30, 2015 Jul 30, 2015

Copy link to clipboard

Copied

Thanks Liam for response. But the link is not working

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Aug 09, 2015 Aug 09, 2015

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 09, 2015 Aug 09, 2015

Copy link to clipboard

Copied

Thank you Simon. It worked.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Aug 27, 2015 Aug 27, 2015

Copy link to clipboard

Copied

Hi DmediaSolution, i follow the tutorial but it all mess up. when add the BC tag (menu v2), the menu show vertical and all child il shows up? could you please advice? 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 10, 2016 Nov 10, 2016

Copy link to clipboard

Copied

LATEST

You can use liquid to render your menu the way you wan with all the classes you want

{module_menu render="collection" menuId="1558121" template="" collection="menu1"}

{% if menu1.items %}

    {% for i in menu1.items %}

        {% if i.items %}

        <li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false" href="{{i.url}}">{{i.label}} <i class="fa fa-angle-right hidden-sm hidden-md" aria-hidden="true"></i></a>

            {% else %}

            <li><a href="{{i.url}}">{{i.label}}</a>

        {% endif %}

        {% if i.items %}

            <ul class="dropdown-menu" role="menu">

                <li class="mobile-link"><a href="{{i.url}}">All {{i.label}}</a>

                </li>

                {% for j in i.items %}

                <li><a href="{{j.url}}">{{j.label}}</a>

                </li>

                {% endfor %}

            </ul>

    {% endif %}

        </li>

    {% endfor %}

{% endif %}

this is ready for bootstrap

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines