paste it into :
http://tools.maxcdn.com/procssor/
set to pretty
and it will de minify the css.
Without looking at he theme it could be that the source files are there as .less or .sass and then being compiled into the single like your seeing being out put.
hello i have a little problem and i will be glad if anyone could help, i came accros this code <?php echo date(‘l jS F Y’); ?> to view date and time on my website http://www.crimeworldngr.com and i was able to paste it somewhere on my header.php and it appeared on my top right corner of my site.
The Problem now is it looks faint and i want to change the text color to red but since i have no coding experience i don’t know how.
can anyone just send the exact code in red text so that i can replace it with the one already uploaded to my website.
Regards
replace
<?php echo date('l jS F Y'); ?>
with
<span style="color:red"><?php echo date('l jS F Y'); ?></span>
or
use http://www.colorpicker.com/ to set the exact colour ‘#ff0000’
<span style="color:#ff0000"><?php echo date('l jS F Y'); ?></span>
wow! thanks alot mate…. but one other thing how do i bold the text ?
i need you to show me what i need to add to this code <span style=”color:#ff0000″><?php echo date(‘l jS F Y’); ?></span> to bold the text of the date http://www.crimeworldngr.com
<b><span style=”color:#ff0000″><?php echo date(‘l jS F Y’); ?></span><b> will this work?
that should work tho <strong> is the preferred tag in html5
<strong>...</strong>
alt you can add it to the css
<span style="color:#ff0000;font-weight:bold;"><?php echo date('l jS F Y'); ?></span>