RSS Titles

  • Unknown's avatar

    I have created four rss feeds which I placed into position across the top of the front page, and post pages.

    1. How do I customize only the titles of these feeds using their appropriate #rss-ID? (I am having problems finding the right selector).
    2. These are category feeds, so why is it when one clicks on their title it goes to the home page, and not the category page? Is there a way to change the link, and if not, can the link at least be disabled?

    Thanks.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I have created a work around. I would appreciate feedback, at any suggestions or problem areas that I did not take into account.

  • Unknown's avatar

    I need help with customizing RSS feeds.

    https://ewtn.blog/main-categories-expanded-view/

    1. How can I adjust ONLY the title’s properties?
    2. How can I have the date display:block after the title?
    3. How to adjust the width between posts and create dividers (bottom-border?) between posts?

    Thanks

  • Unknown's avatar

    UPDATE: As I continue working on this problem. FYI–I give these updates in case some one else is taking the time to address my issue. I want to let them know I resolved it myself. This is NOT an attempt to keep this post on top of the forum list.

    I figured out # 3

    https://ewtn.blog/the-latest-news/

    #rss-31  .rssSummary {
    	font-size:80%;
    	margin-top:20px;
    
    }
    
    #rss-31  a {
    	color: #0047AD;
    	font-weight: bold;
    }
    
    #rss-31 a:hover {
    	color: darkred;
    	font-weight: bold;
    	text-decoration: none;
    }
    
    #rss-31 a:visited {
    	color: #0047AD;
    	font-weight: bold;
    	text-decoration: none;
    }
    
    #rss-31  ul li {
    	margin-top: 10px;
    	line-height: 1.2;
    	padding-bottom: 20px;
    	border-bottom: 1px solid #ccc;
    }

    Still need help working on

    https://ewtn.blog/main-categories-expanded-view/

    1. How can I adjust ONLY the title’s properties?
    2. How can I have the date display:block after the title?

  • Unknown's avatar

    Hello @411holy,

    1. How can I adjust ONLY the title’s properties?

    .widget_rss a.rsswidget {
        /*add your css content here*/
    }

    2. How can I have the date display:block after the title?

    .widget_rss .rss-date {
        display: block!important;
    }

    Hope that work for you.

    Cheers!

  • Unknown's avatar

    perfect, works great.

    https://ewtn.blog/main-categories-expanded-view/

    Thanks for your help.

    Cheers to you, too!

  • The topic ‘RSS Titles’ is closed to new replies.