Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • leonloi Friend
    #813928

    Hi, I would like to know where can I modify the color for the whole theme ? I tried to adjust on the theme magic on the template itself but it seems like there isn’t any effect on it.

    Another thing is how can I remove the numbering display on top of each menu item?

    Thanks.

    Ninja Lead Moderator
    #814345

    Hi,

    Please check out this documentation for how to customize theme: http://www.t3-framework.org/documentation/bs3-customization#theme-customization

    If you use default theme, you can check and see all CSS style from templates/ja_charity/css/layouts folder or another way, you can create templates/ja_charity/css/custom.css file and add all custom CSS style into this file.

    About removing number into top menu.

    • Open templates/ja_charity/css/megamenu.css file and remove content on CSS style below
    .t3-megamenu > .navbar-nav > li:nth-child(1) > a:before {
      content: "-1-";
    }
    .t3-megamenu > .navbar-nav > li:nth-child(2) > a:before {
      content: "-2-";
    }
    .t3-megamenu > .navbar-nav > li:nth-child(3) > a:before {
      content: "-3-";
    }
    .t3-megamenu > .navbar-nav > li:nth-child(4) > a:before {
      content: "-4-";
    }
    .t3-megamenu > .navbar-nav > li:nth-child(5) > a:before {
      content: "-5-";
    }
    .t3-megamenu > .navbar-nav > li:nth-child(6) > a:before {
      content: "-6-";
    }
    .t3-megamenu > .navbar-nav > li:nth-child(7) > a:before {
      content: "-7-";
    }
    .t3-megamenu > .navbar-nav > li:nth-child(8) > a:before {
      content: "-8-";
    }
    .t3-megamenu > .navbar-nav > li:nth-child(9) > a:before {
      content: "-9-";
    }

    Regards

    leonloi Friend
    #816091

    Hi,

    I have remove the content from the templates/ja_charity/css/megamenu.css but the numbe still up in the menu, please advise. The code looks like this:

    .t3-megamenu > .navbar-nav > li:nth-child(1) > a:before {

    }
    .t3-megamenu > .navbar-nav > li:nth-child(2) > a:before {

    }
    .t3-megamenu > .navbar-nav > li:nth-child(3) > a:before {

    }
    .t3-megamenu > .navbar-nav > li:nth-child(4) > a:before {

    }
    .t3-megamenu > .navbar-nav > li:nth-child(5) > a:before {

    }
    .t3-megamenu > .navbar-nav > li:nth-child(6) > a:before {

    }
    .t3-megamenu > .navbar-nav > li:nth-child(7) > a:before {

    }
    .t3-megamenu > .navbar-nav > li:nth-child(8) > a:before {

    }
    .t3-megamenu > .navbar-nav > li:nth-child(9) > a:before {

    }

    Thanks.

    Ninja Lead Moderator
    #816117

    You can give me the URL of your site, I will check the problem directly on your site.

    leonloi Friend
    #816354

    kingspool.sg

    leonloi Friend
    #816374
    This reply has been marked as private.
    Ninja Lead Moderator
    #818034

    Because your site works with LESS files and not CSS files, but you can use this way to remove the number in top menu.

    • Create templates/ja_charity/css/custom.css file and add new rule
    .t3-megamenu > .navbar-nav > li:nth-child(1) > a:before {
      content: none !important;
    }
    .t3-megamenu > .navbar-nav > li:nth-child(2) > a:before {
      content: none !important;
    }
    .t3-megamenu > .navbar-nav > li:nth-child(3) > a:before {
      content: none !important;
    }
    .t3-megamenu > .navbar-nav > li:nth-child(4) > a:before {
      content: none !important;
    }
    .t3-megamenu > .navbar-nav > li:nth-child(5) > a:before {
      content: none !important;
    }
    .t3-megamenu > .navbar-nav > li:nth-child(6) > a:before {
      content: none !important;
    }
    .t3-megamenu > .navbar-nav > li:nth-child(7) > a:before {
      content: none !important;
    }
    .t3-megamenu > .navbar-nav > li:nth-child(8) > a:before {
      content: none !important;
    }
    .t3-megamenu > .navbar-nav > li:nth-child(9) > a:before {
      content: none !important;
    }
    leonloi Friend
    #826093

    Hi,

    That works perfectly, thanks.

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

This topic contains 7 replies, has 2 voices, and was last updated by  leonloi 8 years, 11 months ago.

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