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

    (@markzahra)

    Hi,

    What is that you want to change exactly? Are you referring to the size and colour of the text of the imported feed items?

    Thread Starter penitentamin

    (@penitentamin)

    so simple but i can’t:(
    yes.i want to change color and size(i want bigger size)of feeds that display in my site
    for example:these imported feeds,i want bigger link text size(maybe 16px)and green links(without change the main site theme CSS)
    thank you

    Each feed item that WP RSS Aggregator displays is inside what’s called a CSS “class.” You can create a CSS rule that applies only to links inside these classes. For example, the following changes WP RSS Aggregator links to be red and 8px large. You still have to add this into your theme’s CSS file but it won’t affect any other links.

    .feed-item a {
    color: red;
    font-size: 8px;
    }

    Also, I’d suggest looking into creating a child theme based on your current theme, since anytime you update your theme, any changes you make to it will be overwritten and you’ll have to paste them back in.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Font’ is closed to new replies.