Unwanted blue colors appear in selected design
My chosen design is not shown as I want to!
Question:
Why do unwanted blue colors appear in my design?
Answer:
Blue colors in your design are a sign, that the order in which your CSS files are included in your page is incorrect. Every page that contains a Sliding Billboard contains at least the standard CSS file which is called dmxSlidingBillboard.css and is located in the root of the Styles folder.
<link href="Styles/dmxSlidingBillboard.css" rel="stylesheet" type="text/css" />
This file contains the necessary standard styles for every Billboard. If no other design is selected, the Default style is applied, coming from this CSS file.
After another design is selected an additional file is included in the page.
This additional file should always be included below the general CSS file. If for some reason the order of these included files is changed, the settings for the last included file will be the most important.
<link href="Styles/dmxSlidingBillboard/dark_red/dark_red.css" rel="stylesheet" type="text/css" />
<link href="Styles/dmxSlidingBillboard.css" rel="stylesheet" type="text/css" />
The general file being placed below the specific file for the selected style, will cause the default design to be the most important, therefor causing blue colors to appear in your design.
<link href="Styles/dmxSlidingBillboard/dark_red/dark_red.css" rel="stylesheet" type="text/css" />
<link href="Styles/dmxSlidingBillboard.css" rel="stylesheet" type="text/css" />
Should this be happening, just change the order of the includes in such a way, that your chosen design is the last in order.
Comments
Be the first to write a comment
You must me logged in to write a comment.