• Hello, this yellow outline appeared around my East Coast Australia blog and I have no idea where it came from as it wasn’t there before nor how to remove it. I am using a Travelera theme I bought from Envato market. I’m hoping to remove it without CSS if possible, if someone could maybe walk me through steps, thanks in advance!

    The blog I need help with is thetriptipster.com.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • You need to go to css file and have to make this change.

    File Path : https://thetriptipster.com/wp-content/themes/travelera/sass/site/_posts-and-pages.scss

    Change

    
    .post.sticky {
        border: 2px solid #ffeb07;
    }
    

    to

    
    .post.sticky {
        border: none;
    }
    

    If this is paid theme and you have child theme activated, you can add above code in your child’s theme css file.

    Thread Starter triptipster

    (@triptipster)

    HI @anuragdeshmukh,

    Thank you so much for your quick reply and help. This is a paid theme, and I am a wp beginner, so bear with me. But how do I find the CSS file, I can’t make the change via the link you included, so where could I go from the dashboard? I am not sure whether or note the child theme is activated.

    Thanks again,

    Ella

    Hi Ela.,

    I’m sorry but as you appear to be using a commercial theme, you need to seek support from the theme’s developer/vendor. We do not have access to, nor do we support, commercial products here. Your best bet is always your product’s developer, so we encourage you to use the official support venues, as it allows the developers to be aware of issues with their code and gives back to the community in a more robust way.

    Yes, that’s true. But I guess that yellow border is intentionally provided to highlight Sticky post. If not needed, that can be a part of our customization.

    One way is you can edit/add your css in theme’s style.css file. To do so :

    Appearance >> Editor

    You will land on theme’s style.css file where you can add above code. To be precised, this should be avoided. As this is paid theme and if you make direct changes in parent theme files and later on you update the theme, all you changes will vanish/over ride.

    To avoid this specially in case of Paid themes, we should use child theme. Any customization should be done/added in child theme so that whenever we update the parent/main theme,our changes are untouched.

    You should have a child theme when you downloaded this theme. If not you can create your own child theme and add your changes here.

    Link : https://codex.www.ads-software.com/Child_Themes

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Border around blog post in homepage’ is closed to new replies.