• Resolved Theo

    (@dubeux)


    I’m having problems with the arrows for navigating between posts – it works, but the arrows don’t show.
    I’ve tried disabling the only plugin I have and deleting all styles, but for no effect.
    Any clues? Here’s the page.
    Thanks a lot.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Theo

    (@dubeux)

    It’s definitely some issue with Font Awesome, but my ignorance cramps any further step.

    Thread Starter Theo

    (@dubeux)

    Found it. The header was looking for the “fa” folder in my child theme – where, obviously, there′s none; it’s in the parent theme. Solved it adding this code to functions.php:

    // Load Font Awesome
    add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' );
    function enqueue_font_awesome() {
    
    	wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css' );
    }

    which I copied from here.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Missing nav arrows’ is closed to new replies.