Remove outline and border for Travelify WordPress theme

Hello,

I found a post on how to do this for Sparkling, but it doesn’t seem to work for Travelify.

Can anyone let me know how I can remove the outline and border around my posts?

Thanks

Hi @twygee,

I hope you are well today and thank you for your question.

You can remove it by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

#content .type-post article {
  border: 0;
  box-shadow: none;
}

Best Regards,
Movin

Hi @Movin,

Thanks for your reply, but I tried the code you supplied and it doesn’t seem to work.

Perhaps I wasn’t clear. I was actually wanting to get rid of the box that shows the content background colour. I have changed it to black on my site right now in case you wanted to take a peek.

I want the content box and the wrapper to blend and be “one”

Thanks,
Twygee

Hi Twygee,

Thank you for your reply.

I think you want to remove background color of article so that it matches with the container background and don’t want to just remove the outline and border around posts that you told previously.

To achieve this try using the following CSS code as described previously.

#container #content article {
  background: transparent;
  box-shadow: none;
}

Best Regards,
Movin