Viewing 4 replies - 1 through 4 (of 4 total)
  • That depends on your theme. Without being able to have a look at it (what is your URL?), I think something like this might work:

    p.frbl_last_posttitle abbr {
    text-decoration: none;
    }

    I tried that to get rid of the blue line, but it didn’t work. My blog is located at https://www.amptoons.com/blog ; if you have time, could you take a look and see if you can suggest CSS that might work for me?

    Also, is there any way I can put the date of the last change in italics, but have the title of the most recent post not in italics? Right now, I’m using this in my CSS:

    .lastPublicationDate {
    font-style:italic;
    }

    But that makes the entire line italicized.

    You have to change this file: https://www.amptoons.com/blog/wp-content/plugins/feed-reading-blogroll/css/feedreading_blogroll.css

    Change this rule:

    li.feedreading_bookmark div abbr, li.feedreading_bookmark div small {
    	cursor: pointer;
    }

    to this:

    li.feedreading_bookmark div abbr, li.feedreading_bookmark div small {
    	cursor: pointer;
    	border-bottom: none;
    	font-style:italic;
    }

    To make sure not to lose this change with any future plugin-updates, move the css-file to a save loaction. How to do this is explained in my wiki.

    Thanks very much! That did the trick — blue line is gone. And I’ve got the changes set in a place where it’s safe from future updates (there’s a spot for that built into the theme).

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WP Social Blogroll] CSS Styling for Last Change’ is closed to new replies.