Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2016-04-09 19:58:39

alivato
Member
Registered: 2011-03-31
Posts: 151

How to remove &nbsp between words in the title?

How to remove &nbsp between words in the title?
Instead &nbsp – just “ “

This is important for the design.

Offline

#2 2016-04-09 20:26:15

alivato
Member
Registered: 2011-03-31
Posts: 151

Re: How to remove &nbsp between words in the title?

jquery solution

$(function(){ 
$('.theme a').each(function() {
      $(this).html($(this).text().replace(/\s/g, ' '));
    });
});

Maybe there is another solution, such as easy to set up?

Last edited by alivato (2016-04-09 20:27:51)

Offline

#3 2016-04-09 21:46:33

joebaich
Member
From: DC Metro Area and elsewhere
Registered: 2006-09-24
Posts: 507
Website

Re: How to remove &nbsp between words in the title?

Change the Publish preference ‘Prevent widowed words in article titles?’ from Yes to No.

Offline

#4 2016-04-10 18:36:00

alivato
Member
Registered: 2011-03-31
Posts: 151

Re: How to remove &nbsp between words in the title?

It is a simple solution. Thx

Offline

Board footer

Powered by FluxBB