-
AuthorPosts
-
March 10, 2014 at 4:00 am #21866
Hi, thanks for an awesome theme!
How can I remove the social icons in header… while keeping the social icons remaining in the footer ?
I’m currently using WordPress version 3.8.1., X theme version 1.6.0., and stack is RENEW.
I see an option for this in the customizer -> header settings area… however when I click/unclick this option, it doesn’t remove the header icons?
Can I simply upgrade theme to fix this? If not, can you please help with the code to use?
Thanks!
JamesMarch 10, 2014 at 9:39 am #21938Hey James,
Thanks for writing in and your kind words. You can disable the Top barin header settings or in the Customizer > Custom > CSS, please add the code below.
.x-topbar .x-social-global { display: none; }
Hope that helps. 🙂
March 10, 2014 at 10:35 am #21959Awesome! Thanks for the great support
March 10, 2014 at 12:50 pm #22017You’re welcome.
September 22, 2014 at 9:30 am #109807Hi,
worked great but: How do I get rid of the bar these icons were in? It’s now empty and of no use. Also: How do I get rid of the grey bar underneath the navbar (is that the masthead?!?).
BTW: Love the theme.
Thanks in advance,
Chris.
PS: Using Integrity.
September 22, 2014 at 9:33 am #109810Sorry for spamming. Just disabled the topbar in the customizer. Didn’t show until I shut the customizer though. Still: How to get rid of the masthead (grey bar underneath navbar).
Best,
Chris.
September 22, 2014 at 9:44 am #109820Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL as stated on the forum entrance page. This is to ensure that we can provide you with a tailored answer to your situation. Once you have have provided us with your URL, we will be happy to assist you with everything.
September 22, 2014 at 10:00 am #109838Thanks for the quick reply: http://wordpresstest.bell.de/
The grey bar underneath the Logo/Navbar. BTW it’s not there in the start screen.
September 22, 2014 at 10:06 am #109845That is the breadcrumbs bar. If you want to remove breadcrumbs under Customizer -> Header -> Miscellaneous
uncheck the breadcrumbs checkbox
September 22, 2014 at 10:09 am #109849Embarrassing question I had there. Thank you for your reply. Didn’t show until I saved and closed customizer though (in my defense).
Best,
Chris.
September 22, 2014 at 10:10 am #109850Glad we were able to help. 🙂 Have a nice day. Sometimes it takes saving and closing customizer to get it reset. Glad you were able to get it to work.
January 18, 2015 at 4:26 pm #185674I used
.x-topbar .x-social-global {
display: none;
}to remove the social icons from the header, which is great, but I’d love to just target the social icons in mobile. Is that possible?
January 19, 2015 at 4:44 am #186011Hey Dennis,
You can do this by wrapping your css around a media query like:
@media screen and (max-width: 450px) { .x-topbar .x-social-global { display: none; } }
-
AuthorPosts