Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #35912

    Michael
    Participant

    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,

    #36095

    Alexander
    Keymaster

    Sure, no problem. You can do that with a litte CSS. Customizer > Custom > CSS

    .x-breadcrumb-wrap {
    font-size: 1.5rem;
    }

    Whenever you see em or rem 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.

    #36160

    Michael
    Participant

    Thanks, that’s perfect.

    #36169

    Michael
    Participant

    I’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

    #36432

    Rad
    Moderator

    Hi 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.