Skip to content

Commit

Permalink
Fixed CSS order in Theme
Browse files Browse the repository at this point in the history
The core CSS was coming after the theme CSS and, thus, had a
higher priority.

Fixes #193
  • Loading branch information
inghamn committed Dec 11, 2017
1 parent eb3a3ac commit f501366
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<link rel="stylesheet" type="text/css" href="<?= $this->theme_config['FN1_URI']; ?>/css/kirkwood.css" />
<link rel="stylesheet" type="text/css" href="<?= BASE_URI; ?>/css/screen.css" />
<link rel="stylesheet" type="text/css" href="<?= $this->theme_config['FN1_URI']; ?>/css/kirkwood.css" />
<link rel="stylesheet" type="text/css" href="<?= BASE_URI; ?>/Kirkwood/css/screen.css" />

0 comments on commit f501366

Please sign in to comment.