• Hello. My website URL is https://jkmobiledjs.com/WP

    For some reason, the page link text is in lowercase. I would like normal capitalization to be enforced. My Pages was set up with proper capitalization so the theme must be overriding it.
    Like “services” to “Services”.
    Any help would be appreciated.

Viewing 1 replies (of 1 total)
  • Hi cjones

    Looks like you need to change text-transform: lowercase; to text-transform: capitalize; in your style.css file, at the following point.

    #header #header-menu ul li {
    		height: 32px;
    		font: normal 18px/32px Arial;
    		color: #ffffff;
    		float: left;
    		text-transform: lowercase;
    		padding: 0 15px;
    	}

    You could also just remove that line altogether and the text will remain as entered.

    See https://www.w3schools.com/cssref/pr_text_text-transform.asp for more details.

    Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Header Text is Lowercase’ is closed to new replies.