New Topic

Reply To: menu bar / showcase plugin / button color

Home › Forum › Customization › menu bar / showcase plugin / button color › Reply To: menu bar / showcase plugin / button color

#1459

StartupWP
Keymaster

1. Add:

#menu ul.menu li a {
  color: #000;
  text-shadow: none;
}

Can be dropped right in your CSS box in your theme options, no child theme necessary.

2. Add:

#menu ul li a:hover {
  background: transparent;
  box-shadow: none;
  color: #fff;
}

3. Add:

.entry-content li:before {
  content: "";
}

4. Could be a false error, let us know if you run into any limitations and we’ll investigate the issue further.

5. Add:

#content input[type="submit"], #content input[type="reset"], #container #searchsubmit, .button, #new-topic {
  background: none #FF1493;
  border: 1px solid #FF1493;
  box-shadow: none;
  color: #fff;
}