Here's my stylesheet (style.css). I need to be able to change some CSS for certain elements, can I replace the imported CSS with one held on our server?
/*
Theme Name: Dopamine
Theme URI:
http://londonthemes.com/index.php?themeforest=true
Description: Responsive Multipurpose Corporate WordPress Theme
Author: Skyali & Zucchero
Author URI:
http://londonthemes.com/index.php?themeforest=true
Version: 1.0
License: GNU General Public License
License URI: license.txt
Tags:light, dark, white, black, gray, one-column, two-columns, custom-menu, featured-images, full-width-template, post-formats, theme-options, translation-ready, custom-colors
*/
@import url("css/base.css");
Open in new window
... would make the browser use "red" for the color of font within an anchor tag anywhere on the page like this:
<a>red font here!</a>
So, in the footer of your php, and before the closing </html> or </body> tags, just add whatever you want to cancel out or reset in again and it'll override it. The only issue is it needs to load the entire page before it gets to your styling, but once it sees it, it doesn't use the previously overridden CSS.