Metadata
- Source
- FLOE-542
- Type
- Bug
- Priority
- Trivial
- Status
- Open
- Resolution
- N/A
- Assignee
- N/A
- Reporter
- Jonathan Hung
- Created
2018-02-23T15:32:24.478-0500 - Updated
2018-02-23T15:32:24.478-0500 - Versions
- N/A
- Fixed Versions
- N/A
- Component
-
- Accessible Wordpress Theme
Description
In the Wordpress theme, some variables are being defined using the conditional assignment which isn't necessary since the variables are not also being defined elsewhere. The variables should just be straight assignments.
Example:
main-nav-link-color ?= #00303C;
should be
main-nav-link-color = #00303C;