• I’m assuming this has probably been asked a number of times, but I can’t find anything! I’m wanting to change the font of the heading and sub-heading of my blog https://www.opalresearch.com. I changed the font itself, but I can’t seen to find how to change the size to make it larger.

    Help would be appreciated ??

Viewing 1 replies (of 1 total)
  • did you look in your theme’s style.css?

    #header {
    
    	display: block;
    
    	height: 205px;
    
    	width: 1040px;
    
    	margin-right: auto;
    
    	margin-left: auto;
    
    	padding-right: 0px;
    
    	padding-left: 0px;
    
    	background-image: url(images/header_img.jpg);
    
    	background-repeat: no-repeat;
    
    	position: relative;
    
     }
    
    #header object {
    
    	position:absolute;
    
    	top:0;
    
    	left:0;
    
    	z-index:0;
    
    } 
    
    #header  #header_inside {
    
    	padding-top: 20px;
    
    	padding-left: 80px;
    
    	display: block;
    
    	height: 47px;
    
    	position:absolute;
    
    	z-index:5
    
    }

    part of the header stuff…

Viewing 1 replies (of 1 total)
  • The topic ‘Changing font size of header’ is closed to new replies.