-
AuthorPosts
-
April 22, 2014 at 7:51 am #35912
Hi there,
Congratulations for this wonderful theme and support you are providing.
I’m looking to resize the breadcrumb text. How can I do that ? (I’m using a themechild).
Thanks for any hint,
April 22, 2014 at 4:33 pm #36095Sure, no problem. You can do that with a litte CSS. Customizer > Custom > CSS
.x-breadcrumb-wrap { font-size: 1.5rem; }
Whenever you see
em
orrem
units in CSS, it’s a relative unit of measurement. It’s basically a percentage of the font assigned to the parent elements. This helps in responsive design because we can change a base font size based on the screen size, and all the child elements adjust accordingly.You can use
px
values as well if you like.April 23, 2014 at 12:48 am #36160Thanks, that’s perfect.
April 23, 2014 at 1:17 am #36169I’ve found how to increase letter spacing, word spacing and center the text but I would need addtionnal help.
I would like to put some space between the links. Since I’ve underlined them, they all look underlined with the same line.Any help appreciated,
Thanks
April 23, 2014 at 4:30 pm #36432Hi Micheal,
You could do this by adding margin.
a { display:inline-block; margin-left:10px; margin-left:10px; }
Though, this will apply on all links. If you need to add it on specific link or area, you could use class selector.
.containers_class a { ..... } a.some_class { ..... }
You could also provide a url address, so we can check.
Hope this helps.
-
AuthorPosts