Tagged: x
-
AuthorPosts
-
April 1, 2016 at 12:51 pm #862864
Hey there,
I have been trying to achieve this look http://screencast.com/t/DJOSjZmrlOB8 but have not been successful, can you please assist?
April 1, 2016 at 12:52 pm #862865This reply has been marked as private.April 2, 2016 at 1:01 am #863509Hello There,
Thanks for writing in! To have the same in your example, please add the following css code in the customizer, Appearance > Customize > Custom > CSS
.x-colophon.top .x-column.x-1-1 .widget { display: inline-block; width: auto; } .x-colophon.top .x-column.x-1-1 #text-5 { max-width: 65px; margin-right: 20px; } .x-colophon.top .x-column.x-1-1 #menu-footer, .x-colophon.top .x-column.x-1-1 #menu-footer li { border: none; } .x-colophon.top .x-column.x-1-1 #menu-footer li { display: inline-block; margin: 0 10px; }
Please let us know how it goes.
April 2, 2016 at 2:58 am #863571Thank you Rue,
It works perfectly – can I also ask how to adjust the height of colophon.top to make it smaller?
Regards
BenjaminApril 2, 2016 at 12:30 pm #863939Hi Benjamin,
Please update the previous CSS a bit:
.x-colophon.top { padding: 15px 0; } .x-colophon.top .x-column.x-1-1 .widget { display: inline-block; width: auto; margin-top: 0; } .x-colophon.top .x-column.x-1-1 #text-5 { max-width: 65px; margin-right: 20px; } .x-colophon.top .x-column.x-1-1 #menu-footer, .x-colophon.top .x-column.x-1-1 #menu-footer li { border: none; } .x-colophon.top .x-column.x-1-1 #menu-footer li { display: inline-block; margin: 0 10px; }
Hope it helps 🙂
April 3, 2016 at 1:29 am #864386You guys are awesome – I truly feel blessed that this is a place to go when you are stuck.
Thanks once again!
April 3, 2016 at 10:17 am #864733You are welcome!
Glad that it helped. Feel free to let us know if you face any other issue. We’ll be happy to assist you.
Thanks for using X.
Cheers!
April 5, 2016 at 3:20 am #867285Hey again,
I received a new request and if possible could you please advise me how to best proceed.
Right now the footer widget area is set to one and the corresponding CSS applies to that. I would like to add Facebook and Youtube icons to the right side of the links and have them aligned to right as well.
Is it best to go with a footer widget area set to two or keep it to one?
Also how would the updated CSS be applied?Thanks in advance
BenjaminApril 5, 2016 at 11:03 am #867836Hi Benjamin,
You can use this widget to place the icons. Let’s place them within a div and give it a class name. Then float it right with
float: right;
CSS.Hope this makes sense.
Cheers!
April 5, 2016 at 12:20 pm #867940Thank you – can you please help me with this? I’m having difficulties to make it work the way I want.
April 5, 2016 at 1:59 pm #868061Just to clarify – I have added another text widget in footer 1 and added the following:
<div class="footer-social"> [container style="font-size: 40px"]<a href="#" target"_blank">[icon type="facebook-square"]</a> <a href="#" target="_blank">[icon type="youtube-square"]</a> [/container] </div>
The icons are being left centered and “breaking” the height. I have tried various CSS outputs but been unable to target the class so the look stays see same.
What I’m doing wrong?
April 6, 2016 at 2:13 am #868731Hi There,
I’ve just updated your code and added the custom CSS below on your customizer
#text-8 {float: right;font-size: 2em;}
Hope it helps, Cheers!
April 6, 2016 at 3:14 am #868777Wow, thanks a ton. Perfect! Any guesses what I did wrong?
April 6, 2016 at 8:11 am #869215You’re welcome Benjamin,
The
<div class="footer-social">
already serves as a container. So no need for the[container style="font-size: 40px"]
shortcode, that would only make your HTML structure more complex.Cheers!
-
AuthorPosts