Hi all
I'm currently using Umbraco version 7.5.2 assembly: 1.0.6079.16190.
I've installed Umbraco with Fanoe starter pack.
My problem is that whenever I put some headline/paragraph or any other content that is basically a link, that link doesn't wrap with smaller screens.
I've tried using individual styling like
overflow-wrap: break-word;
word-wrap: break-word;
but it still doesn't work.
Do you have any suggestions how to solve this?
Thanks in advance,
Ivan
I suspect the reason you are seeing this behaviour is this CSS from the fanoe.css file (fyi: line 490 in the CSS file approximately):
white-space: nowrap;
This is applied to all a and a:visited tags which cause the text not to wrap. You can either take this off, or alternatively create an additional class that can override this setting.
Links not wrapping/resizing
Hi all I'm currently using Umbraco version 7.5.2 assembly: 1.0.6079.16190. I've installed Umbraco with Fanoe starter pack. My problem is that whenever I put some headline/paragraph or any other content that is basically a link, that link doesn't wrap with smaller screens. I've tried using individual styling like overflow-wrap: break-word; word-wrap: break-word; but it still doesn't work.
Do you have any suggestions how to solve this? Thanks in advance, Ivan
Hi Ivan,
I suspect the reason you are seeing this behaviour is this CSS from the fanoe.css file (fyi: line 490 in the CSS file approximately):
This is applied to all a and a:visited tags which cause the text not to wrap. You can either take this off, or alternatively create an additional class that can override this setting.
Thanks,
Nik
Removed it and it works like a charm. Thank you very much. Cheers
No problem :-)
is working on a reply...