This topic has 19 replies, 5 voices, and was last updated 8 years, 10 months ago ago by Robert Hall
Hi, I am using Header #7 and I would like to customize the social media field a bit. I am hoping that you can help me accomplish the following:
1 – Make these icons connect to my own personal social media accounts, rather than making them “social share” icons.
2 – Disable the dotted grey line surrounding the icons.
3 – Disable the red text bubble that displays above the icon on the left.
4 – Remove unwanted icons
5 – Include desired icons (Facebook, Instagram, Soundcloud)
Thank you!
Update: I am now using Header #17 because it seems to be better fitting for my site.
Please disregard points #2 & 3 from above.
Additionally, can you please tell me where I can change the top bar background and font colors for this header?
Thank you
Hello,
1. You need edit the file wp-content/themes/woopress/framework/shortcodes.php (find the section “! Share This Product” in line 1918), to change links you need edit the code, for example for Twitter <a href="https://twitter.com/share?url='.$permalink.'&text='.$post_title.'" class="'.$tooltip_class.'" title="'.__('Twitter', ETHEME_DOMAIN).'" target="_blank">
and replace https://twitter.com/share?url='.$permalink.'&text='.$post_title.'
with a link to your Twitter account.
4. To remove unwanted icons you comment the code for icons in the same file shortcodes.php.
5. You need add your code for desired icons in shortcodes.php file.
6. To change background color for top bar where social icons are displayed use this code in Theme Options > Custom CSS > Global Custom CSS:
.header-type-17 .header-top {
background-color: black;
}
To change background color for top bar where Sign In link is, you need use this code:
.top-bar {
background-color: red;
}
Write your color values.
7. Do you want to change font color for tab bar or menu items?
Regards,
Eva Kemp.
Thank you for the detailed reply!
In regards to #7, I have attached a link below of the area that I am talking about.
I am hoping to change all of these top bar elements to a different color, aside from the background.
Also, I would like to change the hover color.
Hello,
Add this code in Global Custom CSS:
.top-bar a {
color: #FFF;
}
.top-bar a:hover {
color: #FFF;
}
Write color values you need.
Regards,
Eva Kemp.
Is there also a way to change the color of the mail icon next to the “Newsletter” text and the divider lines between words to match the same color?
Hello,
Please add this code:
.top-links li.popup_link:before, .links li:after {
color: black;
}
Regards,
Eva Kemp.
Thank you. This changed the color of the mail icon perfectly.
Unfortunately though, this code did not change the color of the divider lines between the items in the top bar. Was there maybe a typo?
Hello,
Sorry, my mistake. Please use this code also:
.links li:after {
background-color: black;
}
Regards,
Eva Kemp.
Hi, I would like to know about points #2 and #3 – how to:
2 – Disable the dotted grey box surrounding the social media icons?
3 – Disable the red comment icon that displays above the icons on the top left?
I am using Woopress v2.4 and currently the website is under construction.
Thankyou
Hello @jatinvengur,
Your site is under construction and we can’t view it. Please provide us with wp-admin panel credentials in Private Content and show pages where you added social media icons and where you see red comment icon.
Thank you.
Regards,
Eva Kemp.
Hi Eva,
I have provided a dropbox link in the private content to a screenshot showing the items I want to remove. Please let me know if you can help, thanks.
Helllo,
Please add the following code in Theme Options->Custom CSS->Global Custom CSS.
.header-type-6 .header .tbs span:before, .header-type-7 .header .tbs span:before, .header-type-8 .header .tbs span:before, .header-type-10 .header .tbs span:before, .header-type-12 .header .tbs span:before{
display:none;
}
.header-type-6 .header .tbs span, .header-type-7 .header .tbs span, .header-type-8 .header .tbs span, .header-type-10 .header .tbs span, .header-type-12 .header .tbs span{
display:none;
}
Regards,
Robert Hall.
Thanks for your response Robert.
Unfortunately that code removed the social icons as well.
I wanted to keep all the social icons and only remove the dotted box around them, and the red “comment” or “call-out” box in the top left of the dotted box.
Can you advise how I would achieve that?
Thanks!
Jatin
Please provide us with wp-admin access in Private Content.
Regards,
Robert Hall.
wp-admin access provided in private content.
Please let me know what changes you make, thank you.
I’ve added this code in Global Custom CSS. Please check.
.header-type-6 .header .tbs span, .header-type-7 .header .tbs span, .header-type-8 .header .tbs span, .header-type-10 .header .tbs span, .header-type-12 .header .tbs span{
border:none;
}
Regards,
Robert Hall.
Thanks so much Robert, that is exactly what I wanted.
Best Regards,
Jatin
You’re welcome!
Regards,
Robert Hall.
You must be logged in to reply to this topic.Log in/Sign up