I am using the Wordpress theme from http://html5blank.com, and it works great when I upload it to my servers online, but when I use it locally using a Wordpress Bitnami Stack the theme cannot find the css. In header.php you have:
<!-- css + javascript -->
<?php wp_head(); ?>
but when I view the source of dev site at localhost (after activating the theme) I find the href of the css is empty:
<!-- css + javascript -->
<link rel='stylesheet' id='normalize-css' href='' media='all' />
<link rel='stylesheet' id='html5blank-css' href='' media='all' />
Meanwhile it does find the images and icons:
<!-- icons -->
<link href="http://localhost:8080/wordpress/wp-content/themes/html5blank-master/img/icons/favicon.ico" rel="shortcut icon">
<link href="http://localhost:8080/wordpress/wp-content/themes/html5blank-master/img/icons/touch.png" rel="apple-touch-icon-precomposed">
My OS is Ubuntu 12.10. Could this be Bitnami issue, or is this something I could fix so I can work on the website locally? Note that default theme "twentytwelve" works fine in my setup.
UPDATE: I compared and tried both versions 1.2.9 and 1.4.0 (current version) of html5blank theme in my Bitnami Wordpress stack. The functions.php files of both versions are identical as far as the wp_register_style() is concerned, yet version 1.2.9 fills in the links to the css while version 1.4.0 leaves the them empty. Also note that 1.4.0 works perfectly fine in Bitnami install on Windows 7.
html5blank_styles, starting at line 130 infunctions.php, if that's any help.) Is there anything in Bitnami's apache error logs? - Matt Gibsonheader.phpfile and the css works perfect that way, but thefunctions.phpmethod flops every time and leaves the link empty. - pooryay21