Space(s) required in Archive Title

Hello!

Under the Categories > Archive Title, I can add one space between letters but how do you add more spaces? For example, if I want to add a space between every letter to HOTDOG, it’s no problem H-O-T-D-O-G (hyphens represents spaces). But, if I want to create two words by inserting an extra space (or two) between the words H-O-T—D-O-G, the output display doesn’t reflect the additional spaces, it still displays H-O-T-D-O-G.

TIA

Hi Marshall,

Wordpress trims the extra spaces in the text fields when you save it. If you want to increase the spacing in the archive title, you may do it through CSS instead.

Please add this code in X > Theme Options > CSS:

.h-landmark span {
    letter-spacing: 4px;
    word-spacing: 8px;
}

Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.