Okay, I can see Copyright © 2011 Braincell Media. at the bottom….
<div class="fix"></div>
</div><!--/columns -->
<div id="footer">
<p><span class="fl">Copyright © 2011 Braincell Media.</span></p>
</div><!--/footer -->
</div><!--/page -->
[SNIPPED GOOGLE CODE]
</body>
</html>
What’s wrong with it? It just looks a bit unstyled.
the actual Style.css code isn’t showing up on the actual page…
Here’s the style code
/*========= FOOTER =========*/
#footer{
background: #000000;
clear: both;
color: #b3b3b3;
height: 35px;
line-height: 35px;
padding: 0 15px;
}
#footer a{
color: #b3b3b3;
}
#footer img {
vertical-align:middle;
}
it should be a solid black box that contains the copyright
That’s odd. First thing I would try is adding a width to your footer.
Hmm – you have some PHP in your .css file – is that intentional?
add_filter('widget_text', 'do_shortcode');
Try removing it and see what it gives you.
This CSS comment also has incorrect syntax:
/==============*AUTHOR AREA*=================//
Try changing it to :
/*==============AUTHOR AREA=================*/
AWESOME!!!! thank you so much zoonini!!!
I’m very new to this stuff so differentiating between languages is still a bit of a challenge BUT I’m getting there!!
Thank you so much it works perfectly 🙂
Excellent, glad that fixed it!
FYI – in future here’s a handy tool to validate the CSS code in your stylesheets – it showed those two syntax errors right away:
http://jigsaw.w3.org/css-validator/
sweet! thank you for the help again and that tool is great!