Support » Theme: Twenty Seventeen » Content down arrow

  • Can you give me some help with the ‘content down arrow’? I’ve read some advice on how to give the background color and arrow itself a different color (by using the extra css field in the theme customizer).

    But I think it’s still a bit ‘hidden’ and got complaints already that people couldn’t find the rest of the homepage’s content as they didn’t see the arrow.

    What about a floating arrow on top of the page? Or some css rules to make it ‘bold’, bigger, give it a hover and so on?

Viewing 1 replies (of 1 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you’re not using a Child Theme, and if the theme doesn’t have a section for CSS modifications then do the following:

    1. Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
    2. use its “CSS Code” section of the dashboard to hold your CSS modifications:
    3. (put this code in)

      
      .site-header .navigation-top .menu-scroll-down {
          border: 5px solid transparent;
          top: -100%;
      }
      
      .site-header .navigation-top .menu-scroll-down:focus,
      .site-header .navigation-top .menu-scroll-down:hover {
          border: 5px solid #222;
      }
      
    4. Save

    Alternatively use your Child Theme style.css file to hold your CSS modifications

    I can’t see a way to change the weight of the arrow itself.

Viewing 1 replies (of 1 total)
  • The topic ‘Content down arrow’ is closed to new replies.