test
Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • gjhvs Friend
    #182986

    Hi,

    Using Mixmaz and loving it!
    Only missing the breadcrumb component… or am I not looking good?

    And if it is not in the template, is there a way to create it?

    Thanks!

    pavit Moderator
    #475740

    Hi

    You already have the breadcrumbs module but is disabled

    gjhvs Friend
    #475742

    <em>@pavit 349962 wrote:</em><blockquote>Hi

    You already have the breadcrumbs module but is disabled</blockquote>

    Oops, 🙂 I see it and have enabled it 🙂
    Look here > http://madonna.nl.testbyte.nl/films/item/2577-arthur-the-minimoys

    I do find the position (at the bottom) a little strange… is it possible to put above the title ‘Arthur & The Minimoys’

    gjhvs Friend
    #476664

    Is there someone who can help me? See question above…
    🙂

    pavit Moderator
    #476670

    Hi Sorry for the delay but i thought you solved it

    Anyway

    <blockquote>is it possible to put above the title ‘Arthur & The Minimoys'</blockquote>

    you mean the breadcrumbs module below the main menu ?

    If you want this make these changes in template manager — Edit Style — LAYOUT Tab

    click on your default layout

    <?xml version="1.0" encoding="utf-8"?>
    <layout name="desktop">
    <!--Extra css load for this layout-->
    <stylesheets>
    <file>css/layout.css</file>
    <file>css/template.css</file>
    <file media="only screen and (max-width:719px)">css/layout-mobile.css</file>
    <file media="only screen and (max-width:479px)">css/layout-mobile-port.css</file>
    <file media="only screen and (min-width:720px) and (max-width: 985px)">css/layout-tablet.css</file>
    </stylesheets>
    <scripts>
    </scripts>
    <blocks name="top" style="xhtml">
    <block name="absolute" type="modules" style="raw">absolute</block>
    <block name="top-panel" type="modules" style="raw" main-inner="1">top-panel</block>
    <block name="tophead" type="tophead" main-inner="1"></block>
    <block name="header" type="header" main-inner="1"></block>
    <block name="mainnav" type="mainnav" main-inner="1"></block>
    <block name="cpanel" type="usertools/cpanel"></block>
    <block name="navhelper" type="navhelper" main-inner="1"></block>
    <block name="topsl" type="spotlight" main-inner="1" special="left" specialwidth="75">user1,user2</block>
    <block name="topsl1" type="spotlight" main-inner="1" special="left" specialwidth="50">user3, user5, user6</block>
    <block name="topsl2" type="spotlight" main-inner="1">user7, user8, user9, user10</block>
    </blocks>
    <blocks name="middle" colwidth="25" main-inner="1">
    <block name="content-mass-top" type="modules" style="xhtml">content-mass-top</block>
    <block name="right1">left, right</block>
    </blocks>
    <blocks name="bottom" style="xhtml">
    <block name="botsl" type="spotlight" main-inner="1">user11, user12, user13, user14</block>
    <block name="navhelper" type="navhelper" main-inner="1"></block>
    <block name="full-bg" type="modules" no-main="1" style="raw">fullbg</block>
    <block name="botsl1" type="spotlight" main-inner="1" special="left" specialwidth="50">user15,user16,user17</block>
    <block name="footer" type="footer"></block>
    </blocks>

    The block line <block name=”navhelper” type=”navhelper” main-inner=”1″></block> is the line that manage your breadcrumbs module

    You need to move that line below the mainnav block so your new default layout will be

    <?xml version="1.0" encoding="utf-8"?>
    <layout name="desktop">
    <!--Extra css load for this layout-->
    <stylesheets>
    <file>css/layout.css</file>
    <file>css/template.css</file>
    <file media="only screen and (max-width:719px)">css/layout-mobile.css</file>
    <file media="only screen and (max-width:479px)">css/layout-mobile-port.css</file>
    <file media="only screen and (min-width:720px) and (max-width: 985px)">css/layout-tablet.css</file>
    </stylesheets>
    <scripts>
    </scripts>
    <blocks name="top" style="xhtml">
    <block name="absolute" type="modules" style="raw">absolute</block>
    <block name="top-panel" type="modules" style="raw" main-inner="1">top-panel</block>
    <block name="tophead" type="tophead" main-inner="1"></block>
    <block name="header" type="header" main-inner="1"></block>
    <block name="mainnav" type="mainnav" main-inner="1"></block>
    <block name="navhelper" type="navhelper" main-inner="1"></block>
    <block name="cpanel" type="usertools/cpanel"></block>
    <block name="navhelper" type="navhelper" main-inner="1"></block>
    <block name="topsl" type="spotlight" main-inner="1" special="left" specialwidth="75">user1,user2</block>
    <block name="topsl1" type="spotlight" main-inner="1" special="left" specialwidth="50">user3, user5, user6</block>
    <block name="topsl2" type="spotlight" main-inner="1">user7, user8, user9, user10</block>
    </blocks>
    <blocks name="middle" colwidth="25" main-inner="1">
    <block name="content-mass-top" type="modules" style="xhtml">content-mass-top</block>
    <block name="right1">left, right</block>
    </blocks>
    <blocks name="bottom" style="xhtml">
    <block name="botsl" type="spotlight" main-inner="1">user11, user12, user13, user14</block>
    <block name="full-bg" type="modules" no-main="1" style="raw">fullbg</block>
    <block name="botsl1" type="spotlight" main-inner="1" special="left" specialwidth="50">user15,user16,user17</block>
    <block name="footer" type="footer"></block>
    </blocks>
    </layout>

    Click on Save and refresh your front end

    hoogenraadmedia Friend
    #476673

    When using the Light theme, the to display path is white on a white background (small error in the default css file)

    Luna Garden Moderator
    #477188

    <em>@hoogenraadmedia 351167 wrote:</em><blockquote>When using the Light theme, the to display path is white on a white background (small error in the default css file)</blockquote>

    Yes, it’s a bit hard to see it.

    You can set background for breadcrumbs in Light themes by go to <blockquote>templates/ja_mixmaz/themes/light/css/template.css</blockquote>

    then add these lines:

    .ja-breadcrums {
    background:#color_code;
    }

    Thanks for pointing it out.

    gjhvs Friend
    #478103

    <em>@pavit 351162 wrote:</em><blockquote>Hi Sorry for the delay but i thought you solved it

    Anyway

    you mean the breadcrumbs module below the main menu ?

    If you want this make these changes in template manager — Edit Style — LAYOUT Tab

    click on your default layout

    <?xml version="1.0" encoding="utf-8"?>
    <layout name="desktop">
    <!--Extra css load for this layout-->
    <stylesheets>
    <file>css/layout.css</file>
    <file>css/template.css</file>
    <file media="only screen and (max-width:719px)">css/layout-mobile.css</file>
    <file media="only screen and (max-width:479px)">css/layout-mobile-port.css</file>
    <file media="only screen and (min-width:720px) and (max-width: 985px)">css/layout-tablet.css</file>
    </stylesheets>
    <scripts>
    </scripts>
    <blocks name="top" style="xhtml">
    <block name="absolute" type="modules" style="raw">absolute</block>
    <block name="top-panel" type="modules" style="raw" main-inner="1">top-panel</block>
    <block name="tophead" type="tophead" main-inner="1"></block>
    <block name="header" type="header" main-inner="1"></block>
    <block name="mainnav" type="mainnav" main-inner="1"></block>
    <block name="cpanel" type="usertools/cpanel"></block>
    <block name="navhelper" type="navhelper" main-inner="1"></block>
    <block name="topsl" type="spotlight" main-inner="1" special="left" specialwidth="75">user1,user2</block>
    <block name="topsl1" type="spotlight" main-inner="1" special="left" specialwidth="50">user3, user5, user6</block>
    <block name="topsl2" type="spotlight" main-inner="1">user7, user8, user9, user10</block>
    </blocks>
    <blocks name="middle" colwidth="25" main-inner="1">
    <block name="content-mass-top" type="modules" style="xhtml">content-mass-top</block>
    <block name="right1">left, right</block>
    </blocks>
    <blocks name="bottom" style="xhtml">
    <block name="botsl" type="spotlight" main-inner="1">user11, user12, user13, user14</block>
    <block name="navhelper" type="navhelper" main-inner="1"></block>
    <block name="full-bg" type="modules" no-main="1" style="raw">fullbg</block>
    <block name="botsl1" type="spotlight" main-inner="1" special="left" specialwidth="50">user15,user16,user17</block>
    <block name="footer" type="footer"></block>
    </blocks>

    The block line <block name=”navhelper” type=”navhelper” main-inner=”1″></block> is the line that manage your breadcrumbs module

    You need to move that line below the mainnav block so your new default layout will be

    <?xml version="1.0" encoding="utf-8"?>
    <layout name="desktop">
    <!--Extra css load for this layout-->
    <stylesheets>
    <file>css/layout.css</file>
    <file>css/template.css</file>
    <file media="only screen and (max-width:719px)">css/layout-mobile.css</file>
    <file media="only screen and (max-width:479px)">css/layout-mobile-port.css</file>
    <file media="only screen and (min-width:720px) and (max-width: 985px)">css/layout-tablet.css</file>
    </stylesheets>
    <scripts>
    </scripts>
    <blocks name="top" style="xhtml">
    <block name="absolute" type="modules" style="raw">absolute</block>
    <block name="top-panel" type="modules" style="raw" main-inner="1">top-panel</block>
    <block name="tophead" type="tophead" main-inner="1"></block>
    <block name="header" type="header" main-inner="1"></block>
    <block name="mainnav" type="mainnav" main-inner="1"></block>
    <block name="navhelper" type="navhelper" main-inner="1"></block>
    <block name="cpanel" type="usertools/cpanel"></block>
    <block name="navhelper" type="navhelper" main-inner="1"></block>
    <block name="topsl" type="spotlight" main-inner="1" special="left" specialwidth="75">user1,user2</block>
    <block name="topsl1" type="spotlight" main-inner="1" special="left" specialwidth="50">user3, user5, user6</block>
    <block name="topsl2" type="spotlight" main-inner="1">user7, user8, user9, user10</block>
    </blocks>
    <blocks name="middle" colwidth="25" main-inner="1">
    <block name="content-mass-top" type="modules" style="xhtml">content-mass-top</block>
    <block name="right1">left, right</block>
    </blocks>
    <blocks name="bottom" style="xhtml">
    <block name="botsl" type="spotlight" main-inner="1">user11, user12, user13, user14</block>
    <block name="full-bg" type="modules" no-main="1" style="raw">fullbg</block>
    <block name="botsl1" type="spotlight" main-inner="1" special="left" specialwidth="50">user15,user16,user17</block>
    <block name="footer" type="footer"></block>
    </blocks>
    </layout>

    Click on Save and refresh your front end</blockquote>

    Sorry for the later reply > if I do this the whole section (including that that blue background thind beneath it) go up.

    I only want the letters/breadcrumbs just placed aboven the title, see screenshot where :

    Is that possible?


    1. breadcrumbs
    pavit Moderator
    #478111

    Hi

    I don’t think would be possible to do what you want or at least i was not able to find it maybe someone else reading this post can find a solution for it

    Luna Garden Moderator
    #478652

    <em>@gjhvs 353005 wrote:</em><blockquote>Sorry for the later reply > if I do this the whole section (including that that blue background thind beneath it) go up.

    I only want the letters/breadcrumbs just placed aboven the title, see screenshot where :

    Is that possible?</blockquote>

    Hello,

    Please try this:

    1. Open this file: <blockquote>templatesja_mixmazblocksnavhelper.php</blockquote> then remove these lines:

    <blockquote><div class=”ja-breadcrums”>
    <jdoc:include type=”module” name=”breadcrumbs” />
    </div></blockquote>

    2. copy file <blockquote>pluginssystemjat3jat3base-themesdefaultblocksmiddle.php</blockquote>

    to this folder <blockquote>templatesja_mixmazblocksmiddle.php</blockquote> (if it doesn’t exist in this folder)

    Open it, find these lines:

    <blockquote><?php $this->genMiddleBlockBegin ($block) ?></blockquote>

    Change to :
    <blockquote><div class=”ja-breadcrums”>
    <jdoc:include type=”module” name=”breadcrumbs” />
    </div>

    <?php $this->genMiddleBlockBegin ($block) ?>
    </blockquote>

    3. Open module manager editor of breadcrumbs in backend, set position assign to ‘user7’

    Save and clear cache.
    Hope this helps

Viewing 10 posts - 1 through 10 (of 10 total)

This topic contains 10 replies, has 4 voices, and was last updated by  Luna Garden 11 years, 11 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum