David Schure
asked on
Fa Fa not showing.
The Fa Fa in the blue square (Invoice) is not showing,
<!--PRINT INVOICES-->
<div class="col-sm-4">
<div class="panel panel-white no-radius text-center">
<div class="panel-body">
<span class="fa-stack fa-2x">
<i class="fa fa-square fa-stack-2x text-primary"></i>
<i class="iconify" data-icon="fa-solid:file-invoice-dollar fa-stack-1x fa-inverse"></i>
</span>
<h2 class="StepTitle">Invoices</h2>
<p class="links-cl-effect-1">
<a href="">Print Therapist Invoices</a>
</p>
</div>
</div>
</div>
Could it be behind the blue box? Also, could CSS later in the code be overwritting? Can you inspect the element w/ your browser and post a screenshot of the settings?
ASKER
Here you go...
element.style {
}
styles.css:2597
.text-primary {
/* color: #007AFF !important; */
font-awesome.min.css:4
.fa-stack-2x {
font-size: 2em;
}
font-awesome.min.css:4
.fa-stack-1x, .fa-stack-2x {
position: absolute;
font-awesome.min.css:4
.fa {
display: inline-block;
bootstrap.min.css:5
.text-primary {
color: #337ab7;
}
bootstrap.min.css:5
* {
-webkit-box-sizing: border-box;
user agent stylesheet
i {
font-style: italic;
}
Inherited from span.fa-stack.fa-2x
font-awesome.min.css:4
.fa-stack {
position: relative;
font-awesome.min.css:4
.fa-2x {
font-size: 2em;
}
Inherited from div.panel.panel-white.no-radius.text-center
styles.css:3843
element.style {
}
styles.css:2597
.text-primary {
/* color: #007AFF !important; */
- color: #0297d7 !important;
font-awesome.min.css:4
.fa-stack-2x {
font-size: 2em;
}
font-awesome.min.css:4
.fa-stack-1x, .fa-stack-2x {
position: absolute;
- left: 0;
- width: 100%;
- text-align: center;
font-awesome.min.css:4
.fa {
display: inline-block;
- font: normal normal normal 14px/1 FontAwesome;
- font-size: inherit;
- text-rendering: auto;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- transform: translate(0, 0);
bootstrap.min.css:5
.text-primary {
color: #337ab7;
}
bootstrap.min.css:5
* {
-webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
user agent stylesheet
i {
font-style: italic;
}
Inherited from span.fa-stack.fa-2x
font-awesome.min.css:4
.fa-stack {
position: relative;
- display: inline-block;
- width: 2em;
- height: 2em;
- line-height: 2em;
- vertical-align: middle;
font-awesome.min.css:4
.fa-2x {
font-size: 2em;
}
Inherited from div.panel.panel-white.no-radius.text-center
styles.css:3843
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
That code does not help.
The easiest way to help you would be to provide a link to this page on your site. If this is generated dynamically, run it in the same manner as you have to create the screenshot. Then Save your rendered HTML browser as an HTML file. Finally upload the file as is to your server and provide the link for us.
The next option would be for you to set up a test case. I started here https://codepen.io/padas/pen/oNWoogE I have added both iconify and font-awsome but you should double check. You will need to add the appropriate css to recreate this test case.
Otherwise, on your own, you can right click on the area and select, "Inspect". Review the console for any errors and then look in the elements tab (this is where right clicking on the element comes in handy). You will be able to see computed styles either to the side or bottom depending on how your browser tools are set up.
It looks like you must have got that far because of the way you copy and pasted your css, but hopefully you can also see that the css you pasted does not help to recreate a test case to identify the issue.
Once you can recreate this, we can better help identify the issue.
The easiest way to help you would be to provide a link to this page on your site. If this is generated dynamically, run it in the same manner as you have to create the screenshot. Then Save your rendered HTML browser as an HTML file. Finally upload the file as is to your server and provide the link for us.
The next option would be for you to set up a test case. I started here https://codepen.io/padas/pen/oNWoogE I have added both iconify and font-awsome but you should double check. You will need to add the appropriate css to recreate this test case.
Otherwise, on your own, you can right click on the area and select, "Inspect". Review the console for any errors and then look in the elements tab (this is where right clicking on the element comes in handy). You will be able to see computed styles either to the side or bottom depending on how your browser tools are set up.
It looks like you must have got that far because of the way you copy and pasted your css, but hopefully you can also see that the css you pasted does not help to recreate a test case to identify the issue.
Once you can recreate this, we can better help identify the issue.
ASKER
Thank you. I figured it out. Working Solution above. Have a great day.