Tagged: x
-
AuthorPosts
-
March 24, 2017 at 3:40 am #1418768
Hi there
Is there any way I can select what icon appears next to the sidebar titles when I turn on ‘site icons’?
Any help is always much appreciated.
Cheers
March 24, 2017 at 6:43 am #1418864Hi,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
March 24, 2017 at 5:19 pm #1419597March 25, 2017 at 1:51 am #1419886Hi There,
Yes, we can change that with a custom CSS, please tell us which sidebar title/s and which icon you want from here http://fontawesome.io/icons/
Thanks.
March 26, 2017 at 5:41 am #1420558This reply has been marked as private.March 26, 2017 at 10:45 am #1420703Hi there,
Thanks for writing back! You can add this under Child Theme’s style.css :
.x-sidebar .h-widget { position: relative; display: inline-block; } .x-sidebar .h-widget::after { font-family: FontAwesome; position: absolute; right: -30px; top: 10px; font-size: 16px; } .x-sidebar #taxonomy_dropdown_widget-3 .h-widget::after { content: "\f02c"; } .x-sidebar #nav_menu-49 .h-widget::after { content: "\f111"; } .x-sidebar #nav_menu-51 .h-widget::after { content: "\f0a3"; } .x-sidebar #text-97 .h-widget::after { content: "\f095"; } .x-sidebar #text-99 .h-widget::after { content: "\f0c9"; }
Hope this helps.
Cheers!
March 26, 2017 at 6:34 pm #1420938This reply has been marked as private.March 27, 2017 at 1:42 am #1421250Hi,
Please change the code to this.
body .x-sidebar .h-widget { position: relative; display: inline-block; padding-left:25px; } body .x-sidebar .h-widget::before { font-family: FontAwesome; position: absolute; left:0; top: 10px; font-size: 16px; } body .x-sidebar #taxonomy_dropdown_widget-3 .h-widget::before { content: "\f02c"; } body .x-sidebar #nav_menu-49 .h-widget::before { content: "\f111"; } body .x-sidebar #nav_menu-51 .h-widget::before { content: "\f0a3"; } body .x-sidebar #text-97 .h-widget::before { content: "\f095"; } body .x-sidebar #text-99 .h-widget::before { content: "\f0c9"; }
You need to add it in your child theme’s style.css file.
Hope that helps.
March 27, 2017 at 6:21 pm #1422310Hi There
Thank you. Much appreciated.
There is just a few things now that need adjusting:
1. I want to change ‘phone’ to ‘phone-square’. Do you know the value for ‘phone-square’ please and I’ll swap it over.
2. Recent posts icon is missing. I would like for ‘bars’ to appear please.
3. The ‘tags’ icon appearing next to SEARCH sits too high. Is there a way I can lower only this icon? All the others are in the correct position.Thanks very much for your assistance.
Cheers.
March 28, 2017 at 3:50 am #1422749Hi,
1. Replace this
body .x-sidebar #text-97 .h-widget::before { content: "\f095"; }
to
body .x-sidebar #text-97 .h-widget::before { content: "\f098"; }
2. Add this in child theme’s style.css
body div#recent-posts-54:before { font-family: fontawesome; content: "\f0c9"; }
3. Add this in child theme’s style.css
body .x-sidebar #taxonomy_dropdown_widget-3 .h-widget::before { top: 12px; }
Hope that helps.
March 28, 2017 at 5:59 am #1422842Hi there,
Thank you. That got it.
For the Recent Post missing icon I used this and it worked spot on.
body .x-sidebar #recent-posts-54 .h-widget::before {
content: “\f0c9”;
}Thank you and your help is always much appreciated.
Cheers.
March 28, 2017 at 7:35 am #1422935We are glad to know that it helped you 🙂
Thanks for choosing X.
Cheers!
-
AuthorPosts