mgajic
1
Hi, can you help me is it possible to do these things in theme.
- Header image is not responsive for mobile?
- Under every blog i see facebook tweeter and linkedin icon. I dont need twiter how to remove it from there and to put instagram?
- 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.
- 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;
}
-
You already have the Instagram option added when I viewed the page.
-
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