Responsive Header

Permalink
Dear forum members,
On my C5 test website:http://test.stefanvandesande.nl...
I have my name as a header but my name is a bit long and is split in 2 parts on mobile devices.
How can I make just only my name responsive for screens smaller than 320px?

Thanks,

Stefan

alxbob8
 
WillemAnchor replied on at Permalink Best Answer Reply
WillemAnchor
Looks like you use the fundamental theme. Maybe you can edit it in design (customize)

... or else add some style rule in custom css or in a html block like:
<style>
@media all and (max-width: 320px) {
  div.ccm-page .branding p:first-child span {
    font-size: 25px !important;
  }
}
</style>
(I didn't test it ...)
alxbob8 replied on at Permalink Reply
alxbob8
yep, that is working out , and in the mean time I learned a lot

thank you !!