New Topic

menu bar / showcase plugin / button color

Home › Forum › Customization › menu bar / showcase plugin / button color

This topic contains 7 replies, has 3 voices, and was last updated by  StartupWP 3 years, 11 months ago.

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1458

    madison
    Participant

    A few questions:

    1. Can the font color be changed in the menu bar via custom CSS or is it necessary to use a child theme and modify the style there?
    2. Also on the menu bar, can custom CSS be used to change the border between menu items or make it transparent?
    3. A small underscore appears to the lower left of each picture in the photo gallery. Any way to remove that? Site is http://www.edandnan.com/cakekrums/photo-gallery/
    4. Entering the key for the Showcase plugin says it’s invalid. The plugin works fine except for the small dash mentioned above. Are there other features the key unlocks?
    5. Can the short code button color and button font color be modified?

    Thank you.

    #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;
    }
    #2221

    eric
    Participant

    I have a related question, and I found this advice by searching, but I need clarification.

    I want to change the text color and delete the text shadow in the menu bar items, on my front page. It looks like the code specified above (“1. Add:”) would do that, if I replaced “000” with a color such as “6E6262”. I turned on “Custom Styles & Custom CSS”, then I copy-pasted this code into the “Custom CSS” text box under “Advanced Editing”. After saving, there was no change to the style of the menu-bar items. What am I doing wrong?

    Thanks.

    #2222

    StartupWP
    Keymaster

    Link to your site please. There might be a slight variation in the code.

    #2224

    eric
    Participant

    Thanks very much. The site is http://argos-gallery.com

    #2225

    StartupWP
    Keymaster
    #menu ul li a {
      color: #6E6262;
      text-shadow: none;
    }
    #2226

    eric
    Participant

    Brilliant. Thank you!

    I’m a new startup user, I hope you folks are around a long time. Let me know how I can direct customers your way.

    –Eric

    #2227

    StartupWP
    Keymaster

    You’re welcome.

    Feel free to join the affiliates program:

    https://startupwp.com/affiliates/

Viewing 8 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic.