• 1. Changing all of the theme text to black including menus (and their outlines) etc.
    2. On the Cutsie Crafts page (& Others) the Gallery is appearing twice? (I have troubleshot a few things:
    >There are no active widgets on that page, no the gallery is not duplicated, I have tried doing just an inserted image and it does the same thing, I have deleted the portfolio project and completely recreated it, and it does the same thing.
    HAAAALP ??
    TIA,
    Befuddled

    The site I need help with is: aliciameiersdesign.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter akmeiers13462

    (@akmeiers13462)

    Also is there a way to make the menus stay on the screen instead of keep opening to the right and going off of the screen?

    Hi there,

    1. Changing all of the theme text to black including menus (and their outlines) etc.

    So this is doable but it could require a fair amount of CSS to make sure the color is changed in all areas.

    One thing you can do is look at the existing style.css file and do a search for instances of this:

    color: #fff

    Generally that is referring to text color and setting it to white.

    Here is an example:

    body,
    button,
    input,
    select,
    textarea {
        color: #fff;
        font-family: Karla, sans-serif;
        font-size: 16px;
        line-height: 1.5;
    }

    Changing the fff to 000 will make the color black. You can keep just the color rule, and remove the other bits like so:

    body,
    button,
    input,
    select,
    textarea {
        color: #000;
    }

    You’ll need to repeat that for the areas of your site where the text color needs to be changed.

    The code itself should be added to the site from Customize > Additional CSS. If you change it in the style.css file instead, your changes will be overwritten when the theme is updated.

    is there a way to make the menus stay on the screen instead of keep opening to the right and going off of the screen?

    I’d say maybe try placing Graphic Design Portfolio and Interior Design Portfolio as top level items in the navigation. The theme needs room to display sub-menu items over on the right. If there isn’t enough space, they will be cut off.

    Even if you were to keep your existing sub-menu structure, the items couldn’t be displayed if Portfolio were the very first menu item:

    If you can add more menu items to the right of Portfolio, it will push the dropdowns further left and that may work.

    On the Cutsie Crafts page (& Others) the Gallery is appearing twice?

    I see what you mean, but I’m not able to replicate this with a fresh installation of the theme and using Jetpack’s Slideshow gallery type.

    You can hide the second instance of the gallery with this CSS:

    .large-element .jetpack-slideshow {
        display: none;
    }

    To actually fix the underlying issue, you might see if one of your plugins is causing a conflict.

    One thing you can do is make a backup of your site’s files and database, then try disabling plugins (other than Jetpack) one at a time to see if turning one off fixes the problem.

    If that doesn’t work, and you’ve made modifications to the theme files, you’ll want to start with a fresh copy of the theme to see if that helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Orvis Theme text color change & duplicating galleries’ is closed to new replies.