Change the size, police, and color of the blog title?

Viewing 13 posts - 1 through 13 (of 13 total)
  • #2379
    Cyrille
    Participant

    Hello,
    First of all thank you for your theme.
    I love it but I like to know if it is possible to change the size, police, and color of the blog title (minimatica) ?
    I am not an expert but I understand the need to change codes in theme editor, which ones?
    Thank you in advance for your help and sorry for my very bad English …

    #2380
    Daniel Tara
    Keymaster

    Look in style.css for instances of [code]#site-title[/code] and change the [code]color[/code] values.

    #2381
    M_Portiss
    Participant

    I also love the style.. The ONLY issue I have is the size of the banner.. 940×100 just is not tall enough.. Any way to make it 940×250? I have edited the style.css file, however the change does not reflect on the upload page..

    Ideas?!

    Thanks for the work!
    Matt

    #2382
    Cyrille
    Participant

    Thank you for your answer Daniel !
    I’m really not an expert, before making a mistake you could confirm me that it is the good part of Site title:

    #site-title {
    width:940px;
    margin:0 auto;
    font-size:36px;
    line-height:100px;
    text-transform:none;
    }

    #site-title a {
    color:#151515;
    text-decoration:none;

    For change the color it’s good this line :
    color:#151515;

    I must be to change the value 151515 by that of my choice to change the text color?

    If i understand this line:
    font-size: 36px
    for change the size of the text (I just have to change the value 36px to change the size)?

    but for change the police I do not see witch line is it?
    I would put the police:
    Trixie is this possible?

    Sorry to ask all these questions, but as I told you I am far from being an expert and I thank you in advance for the time you spend on me.
    Thank you so much.

    #2383
    Daniel Tara
    Keymaster

    @Matt You also need to change the width and height values in functions.php for the custom header function.

    @Cyrille Those are the values you need to change for font color and size. What do you mean by police?

    #2384
    Cyrille
    Participant

    Again thank you so much for your response to the police I wanted to change a nome “Trixie” if this is possible?

    #2385
    Daniel Tara
    Keymaster

    I do not understand what you mean by “police”. If you want to change the name of the website, you can do it under Settings > General.

    #2386
    Cyrille
    Participant

    I’m sorry I misspoke sorry, it is possible to change the script of the title example :
    as the title is written in Arial Black I would change it to trixie.
    Thank you for your advice I got to change the color and size thanks to you.

    #2387
    Daniel Tara
    Keymaster

    Yes, it’s possible, just search for the [code]font-family[/code] declaration.

    #2388
    Cyrille
    Participant

    Thank you so much for the response very useful, but I have a little problem I can not find the line for only changing the title script “Minimatic” in your example, I do not want change other things only the title.
    the one paragraph that I found is:
    @font-face {
    font-family: ‘Vegur’;
    src: url(‘fonts/vegur-light.eot’);
    src: url(‘fonts/vegur-light.eot?#iefix’) format(’embedded-opentype’),
    url(‘fonts/vegur-light.woff’) format(‘woff’),
    url(‘fonts/vegur-light.ttf’) format(‘truetype’),
    url(‘fonts/vegur-light.otf’) format(‘opentype’),
    url(‘fonts/vegur-light.svg#VegurLight’) format(‘svg’);
    font-weight: normal;
    font-style: normal;
    }

    @font-face {
    font-family: ‘Vegur’;
    src: url(‘fonts/vegur-bold.eot’);
    src: url(‘fonts/vegur-bold.eot?#iefix’) format(’embedded-opentype’),
    url(‘fonts/vegur-bold.woff’) format(‘woff’),
    url(‘fonts/vegur-bold.ttf’) format(‘truetype’),
    url(‘fonts/vegur-bold.otf’) format(‘opentype’),
    url(‘fonts/vegur-bold.svg#VegurBold’) format(‘svg’);
    font-weight: bold;
    font-style: normal;

    I deduced that the police “Vegur” but is it for all the page or just the title?

    #2389
    Daniel Tara
    Keymaster

    Sorry, not that declaration.

    Search for this instance:

    body {
    font-family:"Vegur", sans-serif;
    }

    Insert before Vegur the other font you would like to use.

    #2390
    Cyrille
    Participant

    Hello,
    Thank you so much for your answer, I did find the line:

    body {
    background:#FFF;
    color:#000;
    font-family:”Vegur”, sans-serif;
    font-size:16px;
    line-height:18px;

    but my problem persists when I change nothing happens, I tried with other names that Trixie and nothing changes the title is still Vegur.
    As can I do?
    Thank you for you help

    #2391
    Daniel Tara
    Keymaster

    You can’t use just any font name. If you don’t have the font Trixie installed on your system, it won’t show up.

    I recommend you stick to web safe fonts like Helvetica, Lucida Grande, Verdana, Tahoma, Georgia, Times.

Viewing 13 posts - 1 through 13 (of 13 total)

You must be logged in to reply to this topic.