Social icon, Header image responseve,

Hi, can you help me is it possible to do these things in theme.

  1. Header image is not responsive for mobile?
  2. Under every blog i see facebook tweeter and linkedin icon. I dont need twiter how to remove it from there and to put instagram?
  3. Is there a way to put mansonary blog post to be on a page without a sidebar…
    This is a web site http://www.tanyasgoodies.com/

Thanks

Hello there,

I hope you are doing well today.

  1. Please try using the following CSS to have the image become responsive by adding it to Appearance > Customize > Additional CSS:
@media (max-width: 650px)
.custom-header {
    width: 100% !important;
}
  1. You already have the Instagram option added when I viewed the page.

  2. If you want to have the blog page appear without the side bare you can use this code to do so:


/*Remove sidebar*/
.post aside#secondary {
    display: none;
}

@media (min-width: 992px)
.post .col-md-8 {
    width: 100%;
}

Best Regards,
Support