Tagged Questions
0
votes
0answers
11 views
get_stylesheet_uri() seems to be returning the wrong path. Where is this coming from? [duplicate]
I've got Wordpress 3.5.1 setup like Mark Jaquith's Wordpress Skeleton repository. (https://github.com/markjaquith/WordPress-Skeleton). I'm using Roots as the theme, but the stylesheet directory is ...
0
votes
2answers
195 views
different way to achive stylesheet_url
I'd like to understand the difference between:
<?php bloginfo( 'stylesheet_url' ); ?>
and
<?php bloginfo('template_url'); ?>/style.css
because I think the second one is more flexible ...
0
votes
1answer
126 views
Having issue with WordPress wp_enqueue_style
I am building a full design into WordPress for the first time and I am trying to load in stylesheets and script files but all I seem to be getting is the text output of the location.
What I have is ...
0
votes
1answer
98 views
Custom link color or stylesheets
I'm developing av theme for my WPMU users and are wondering is there a function for choosing the colors on the links?
The same way Wordpress lets you change the background-color or header-images. ...
0
votes
2answers
46 views
Sidebar doesnt get updated?
I was trying to edit a theme by updating the style.css of it. But I also needed to add some manual html to the sidebar like ul li's . I maintained the order and updated the html od sidebar within the ...
10
votes
3answers
1k views
How important is it to enqueue a theme's stylesheet?
I have trawled the net looking for an answer to this, but for some reason all I can find are actual examples, but without that particular explanation, which is clear say in the case of scripts. Can ...
1
vote
3answers
1k views
Can't edit style.css in subdirectory of my theme?
I want to edit a file style.css but the theme editor shows this:
/* ---------- Reset Tags ----------- */
@import url("css/reset.css");
/* ---------- Reset Tags ----------- */
@import ...
2
votes
2answers
598 views
add generated stylesheet from parent theme after child-themes style.css
I have a child-theme -> parent-theme setup, where I need to have stylesheet called generated.css loaded in addition to the style.css file added by the active child-theme. The generated.css file is ...
5
votes
2answers
3k views
Generating CSS Files Dynamically Using PHP Scripts?
As part of my efforts to speed up my themes for my clients I am delivering my CSS via a dynamic PHP file. At the end of the called for example my_theme_css.php:
This allows me to add Expiry headers ...