• Resolved Menno80

    (@menno80)


    I am using your plugin with the Bridge-theme and for some reasons the links to all post in this plugin are in the original color instead of the changed color (in theme).

    How can I change to color of these links?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author wpseek

    (@alphawolf)

    Hi Menno80,

    adding the following to your theme’s style.css file should fix the issue:

    
    .sya_container ul li a {
      color: inherit;
    }
    
    Thread Starter Menno80

    (@menno80)

    Thanks for the quick help.

    Is it also possible to only show one category instead of all?

    Plugin Author wpseek

    (@alphawolf)

    Is it also possible to only show one category instead of all?

    Adding the following to your theme’s functions.php should do the trick:

    
    add_filter( 'sya_categories', function($sya_categories) {
    	return array_slice($sya_categories, 0, 1);
    });
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘change color of link to posts’ is closed to new replies.