How to change Page Titles

2 replies · opened Sep 16, 2017

GGlobo_LogicSep 16, 2017

Hi

How do you change the font colour of the H1 and span for the Page Titles?

If you look at http://globotest.com/globo/products.html - I want to be able to change it from white to another colour so you can read it with a lighter background.

GGlobo_LogicSep 16, 2017

It's ok, I have worked it out. I've added text shadow using CSS

IivanpossSep 17, 2017

I am only a user (not support) but try this :

inside your H1 in the body put <h1 id="colorchangeA" (or any name you want to give it)

then inside the head style place this:

#colorchangeA {

   font-size:7.0vh;

-webkit-text-fill-color: blue;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: red;
}

this will allow you to change your font size; color and stroke in one style. The font size (vh) is a % of the viewing screen height rather than pixels.

and by creating a second ID (colorchangeB) you can control a different H1 in another div or section.

I'm no expert but I think this should work.

Have the same question, or something new?

Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.

Reply on the dashboard