Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Kara,

    You can add this manually to the code by going to Appearance -> Editor. You will need to change two files.

    In Theme Functions, find the area near the bottom where all the social media settings are defined. You can use these as models to create a $wp_customize->add_setting and $wp_customize->add_control call.

    In Theme Footer, you will have to add two pieces as well. You will have to set the $youtube or $pinterest variable first (something like $youtube = get_theme_mod('rokophotolite_youtube_link');, depending on what you put into the theme functions. Then add a statement that actually generates the icon based on the code you see for the other social media icons.

    Hope this helps!

    You can edit the CSS manually, if you’d like! The class that controls this is called dark-overlay.

    In wp-admin, you can go to Appearance > Editor and find the CSS for .dark-overlay.

    Find the two lines that look like this:
    background: rgba(0, 0, 0, 0.8);

    And comment them out like so:
    /*background: rgba(0, 0, 0, 0.8);*/

    You may also have to adjust the colors in .vision and .vision-border so that they still show up on the light background. ??

    Hope this helps!

Viewing 2 replies - 1 through 2 (of 2 total)