• Resolved rogue991

    (@rogue991)


    I upgraded from the free to paid version.

    A few things I need help with.

    1. How do I hide the top information bar (in black above the logo)?
    2. The text label for the link to the posts in the right panel needs to be white. Not sure what the setting is to make that happen. Suggestions?
    3. I would like to move the slideshow caption. I found the following in another post, and added it to Custom CSS. It has no effect. All the slides are the same size. I would also like the font to be 24 pt and bold. Suggestions?
    .slideshow-slide-caption {
    bottom: 20px;
    color:#000;
    text-shadow:none;
    }

    Thx

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author WEN Themes

    (@wenthemes)

    1. You can hide the top information bar by adding the following CSS in “Appearance – Customize – Additional CSS”
      <pre><code>tophead {display: none; }</code></pre>
    2. I am not sure which one you are talking about. Check the color options in “Appearance – Customize – Color Options “
    3. For Slider color, change it from “Appearance – Customize – Color Options – Slider Color Options”
    Thread Starter rogue991

    (@rogue991)

    The following Additional CSS solved problems 1 and 3. I’ll repost #2 with pictures.

    #tophead {display: none; }

    #main-slider .cycle-caption {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 0 0 0 0;
    border-right: 0px solid #800080;
    height: auto;
    max-width: 60%;
    padding: 5px 25px 10px 25px;
    position: absolute;
    text-align: left;
    top: 75%;
    left: 5%;
    width: auto;
    z-index: 999;
    }

    #main-slider p {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 5px;
    text-shadow: 1 1 1 #000000;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.