phil03
posted this
01 December 2015
Hello BillionDigital Team,
For the problem that I pointed out.
There is a conflict between your file bootstrap.css and media.css
Indeed you use 2 times the same file returns, for icons that are unique in your policy and are not found in Icomoon.
Attached is the offending code
bootstrap.css
@font-face {
font-family: 'Billion Web Font';
src: url("BillionWebFonts.woff") format('woff'), url("BillionWebFonts.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: 'Billion Web Font';
font-style: normal;
font-weight: normal;
text-decoration: inherit;
text-align: center;
text-transform: none;
width: 1em;
}
[class^="icon-"],
[class*=" icon-"] {
text-decoration: inherit;
display: inline-block;
speak: none;
}
And
media.css
@font-face {
font-family: 'IcoMoon';
src: url('../../../media/jui/fonts/IcoMoon.eot');
src: url('../../../media/jui/fonts/IcoMoon.eot?#iefix') format('embedded-opentype'), url('../../../media/jui/fonts/IcoMoon.woff') format('woff'), url('../../../media/jui/fonts/IcoMoon.ttf') format('truetype'), url('../../../media/jui/fonts/IcoMoon.svg#IcoMoon') format('svg');
font-weight: normal;
font-style: normal;
}
[data-icon]:before {
font-family: 'IcoMoon';
content: attr(data-icon);
speak: none;
}
[class^="icon-"],
[class*=" icon-"] {
display: inline-block;
width: 14px;
height: 14px;
*margin-right: .3em;
line-height: 14px;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: 'IcoMoon';
font-style: normal;
speak: none;
}
regards,
Philippe
Hello BillionDigital Team,
For the problem that I pointed out.
There is a conflict between your file bootstrap.css and media.css
Indeed you use 2 times the same file returns, for icons that are unique in your policy and are not found in Icomoon.
Attached is the offending code
**bootstrap.css**
@font-face {
font-family: 'Billion Web Font';
src: url("BillionWebFonts.woff") format('woff'), url("BillionWebFonts.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: 'Billion Web Font';
font-style: normal;
font-weight: normal;
text-decoration: inherit;
text-align: center;
text-transform: none;
width: 1em;
}
[class^="icon-"],
[class*=" icon-"] {
text-decoration: inherit;
display: inline-block;
speak: none;
}
And
**media.css**
@font-face {
font-family: 'IcoMoon';
src: url('../../../media/jui/fonts/IcoMoon.eot');
src: url('../../../media/jui/fonts/IcoMoon.eot?#iefix') format('embedded-opentype'), url('../../../media/jui/fonts/IcoMoon.woff') format('woff'), url('../../../media/jui/fonts/IcoMoon.ttf') format('truetype'), url('../../../media/jui/fonts/IcoMoon.svg#IcoMoon') format('svg');
font-weight: normal;
font-style: normal;
}
[data-icon]:before {
font-family: 'IcoMoon';
content: attr(data-icon);
speak: none;
}
[class^="icon-"],
[class*=" icon-"] {
display: inline-block;
width: 14px;
height: 14px;
*margin-right: .3em;
line-height: 14px;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: 'IcoMoon';
font-style: normal;
speak: none;
}
regards,
Philippe