Support » Theme: discover » Change a fonte size in WelcomeHead and Titles of articles

  • Resolved rentporto

    (@rentporto)


    Hello,

    I love this template and I hope you can help me pease with this :

    1-Change a fonte size in WelcomeHead(where is writing “SA” here)
    2-Change a fonte size in Titles of articles(where is writing “Teste1” here)

    Thankyou,

Viewing 6 replies - 1 through 6 (of 6 total)
  • Fabiana

    (@fabianapsimoes)

    Hi,

    You need to create a child theme in order to edit your theme’s styles. You should *not* change your theme’s files, since all your changes will be gone whenever you update the theme.

    Having said that, you can do this with the following CSS rules:

    #slider_container h1 {
        font-size: 25px;
    }

    This will change the font size in the first page you linked (where it said “SA”). You adjust the value of font-size to your taste.

    #subhead_container h1 {
        font-size: 25px;
    }

    This will take care of the font in the title of your articles. Again, just adjust the size to your taste 🙂

    Fabiana

    (@fabianapsimoes)

    Just so you know, an alternative to creating a child theme is to install a custom CSS plugin: http://wordpress.org/plugins/search.php?q=custom+css.

    That’s great Thanks! YOu saved me!!!

    I have the same issue and for the life of me I can’t change it….. this is pretty much holding up my release…. any help would be greatly appreciated. ..

    http://www.maxwhip.com
    I am using a child theme

    The code in the child them is pretty basic.

    body {
    	background: #ccc;
    	font: normal 12px Verdana, sans-serif;
    	color: #777;
    	line-height:18px;
    	border-top: 4px solid #fd7800;
    }
    
    .meta-data {
    display: none;
    }
    
    #nav-single {
    display: none;
    }
    
    h1 { font-weight: normal; font-size: 30px; line-height: 36px;  }
    h2 { font-weight: normal; font-size: 24px; line-height: 30px;  }
    h3 { font-weight: normal; font-size: 18px; line-height: 24px; }
    h4 { font-weight: normal; font-size: 12px; line-height: 18px; }
    
    /* Footer */
    #footer {
    	padding: 5px 20px;
    	background: #ddd;
    }
    
    #footer-container{
    	padding: 5px 20px;
    	background: #ffffff;
    	border-top: 8px solid #000;
    	font-size:11px;
    }
    
    #footer-info {
    	color:#ccc;
    	text-align:left;
    	background: #1b1b1b;
    	padding: 20px 0;
    }

    you should enter codes to your Custom CSS Manager.

    #slider_container h1 {
    font-size: 25px;
    }

    is the code Fabiana mentioned above^^

    Thread Starter rentporto

    (@rentporto)

    I add the code directly in the style.css and its solved. I try to creat a child theme but I dont understand what I make rong, because when I activate de chid theme all desapear. I make all changes in the original theme. I save it, because the code are changed for me and now I dont know how I can creat my chid theme with this code. Anybody can help me?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change a fonte size in WelcomeHead and Titles of articles’ is closed to new replies.