-
AuthorPosts
-
TomC Moderator
TomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
August 5, 2015 at 5:35 pm #656358HOW TO REMOVE THE NUMBERS ABOVE THE MAIN NAV MENU ITEMS:
Look to the following file path —> /templates/ja_charity/local/css/themes/eathisa/megamenu.css
Beginning at/about line 365, you will see a series of CSS rules that look like this . . . .
.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-";
}Modify each rule to resemble the below example:
}
.t3-megamenu > .navbar-nav > li:nth-child(9) > a::before {
display: none;
}SAVE CHANGES – CLEAR CACHE – REFRESH PAGE
There you go, no more numbers. 😎
1 user says Thank You to TomC for this useful post
Pankaj Sharma ModeratorPankaj Sharma
- Join date:
- February 2015
- Posts:
- 24589
- Downloads:
- 144
- Uploads:
- 202
- Thanks:
- 127
- Thanked:
- 4196 times in 4019 posts
August 26, 2015 at 1:13 am #665455Use below code in custom.css
.t3-megamenu > .navbar-nav > li:nth-child(1) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(2) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(3) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(4) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(5) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(6) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(7) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(8) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(9) > a:before{ display: none!important; }
Pankaj Sharma ModeratorPankaj Sharma
- Join date:
- February 2015
- Posts:
- 24589
- Downloads:
- 144
- Uploads:
- 202
- Thanks:
- 127
- Thanked:
- 4196 times in 4019 posts
August 26, 2015 at 1:13 am #746601Use below code in custom.css
.t3-megamenu > .navbar-nav > li:nth-child(1) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(2) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(3) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(4) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(5) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(6) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(7) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(8) > a:before{ display: none!important; }
.t3-megamenu > .navbar-nav > li:nth-child(9) > a:before{ display: none!important; }
September 30, 2015 at 3:01 pm #694039thank you, i must be doing something wrong. it didnt work…
September 30, 2015 at 3:01 pm #750210thank you, i must be doing something wrong. it didnt work…
June 8, 2016 at 2:18 pm #938867i must be doing something wrong. it didnt work… for me too.
somebody can help me?
June 8, 2016 at 2:20 pm #938869i must be doing something wrong. it didnt work… for me too.
somebody can help me?
i change ALL files .css where the name was "megamenu" in to /templates/ja_charity.
it dont work…
why?
June 8, 2016 at 2:20 pm #938870i must be doing something wrong. it didnt work… for me too.
somebody can help me?
i change ALL files .css where the name was "megamenu" in to /templates/ja_charity.
it dont work…
why?
June 8, 2016 at 2:22 pm #938871i must be doing something wrong. it didnt work… for me too.
somebody can help me?
i change ALL files .css where the name was "megamenu" in to /templates/ja_charity.
i clear cache on server, on site, on browser…
it dont work…
why?
June 8, 2016 at 2:58 pm #938875founded solution.
go to… ./t3-assets/dev/templates.ja_charity.less.megamenu.less.css
i did…
.t3-megamenu > .navbar-nav > li > a:before {
color: #000000;
font-size: 14px;
margin-top: 3px;
font-weight: normal;
font-style: italic;
text-align: center;
display: block;
position: absolute;
top: -10px;
left: 0;
right: 0;
/content: "-1-";/
}
.t3-megamenu > .navbar-nav > li:nth-child(1) > a:before {
display: none;
}
.t3-megamenu > .navbar-nav > li:nth-child(2) > a:before {
display: none;
}
.t3-megamenu > .navbar-nav > li:nth-child(3) > a:before {
display: none;
}
.t3-megamenu > .navbar-nav > li:nth-child(4) > a:before {
display: none;
}
.t3-megamenu > .navbar-nav > li:nth-child(5) > a:before {
display: none;
}
.t3-megamenu > .navbar-nav > li:nth-child(6) > a:before {
display: none;
}
.t3-megamenu > .navbar-nav > li:nth-child(7) > a:before {
display: none;
}
.t3-megamenu > .navbar-nav > li:nth-child(8) > a:before {
display: none;
}
.t3-megamenu > .navbar-nav > li:nth-child(9) > a:before {
display: none;
} -
AuthorPosts
This topic contains 9 replies, has 4 voices, and was last updated by gilbertoss 8 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum