• Resolved faiths13

    (@faiths13)


    I need to move the title of my blog. The positioning is quite right. Can you please help me?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter faiths13

    (@faiths13)

    I would also like to change the font for the sidebar – ‘whats this place’, etc. thank you

    Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    To change the font for the sidebar, exept box “What is this place?”, you need in the style.css file find this block of code:

    /* Sidebar (Column 2)
    -------------------------------------------------------------- */
    #sidebar {
        float:right;
        width:210px;
        font-size:100%;
        line-height:110%; }

    and add, example, this line:

    font-family: Forum, Times New Roman, Times, Georgia, serif;

    To change the font for the sidebar box “What is this place?”, you need in the style.css file find this block of code:

    /* About Box */
    #sidebar .about-box {
        background:url(images/about_box.gif) no-repeat 10px 5px;
        padding:30px 10px 20px;
        font-family: Forum, Times New Roman, Times, Georgia, serif;
        font-size:90%;
        line-height:110%; }

    and edit this line:

    font-family: Forum, Times New Roman, Times, Georgia, serif;

    Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    To move the Title to right, try this:
    In customizer.php file find this block of code:

    /* Site Title Position. */
            if ( get_theme_mod('title_position') == 'left') {
                ?>
                    #title { margin-left: 4%; }
            <?php
            }
            if ( get_theme_mod('title_position') == 'center') {
                ?>
                    #title { margin-left: 20%; }
            <?php
            }
            /*End - Site Title Position. */

    and replace it from this:

    /* Site Title Position. */
            if ( get_theme_mod('title_position') == 'left') {
                ?>
                    #title { margin-left: 50%; }
            <?php
            }
            if ( get_theme_mod('title_position') == 'center') {
                ?>
                    #title { margin-left: 50%; }
            <?php
            }
            /*End - Site Title Position. */

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help With Title’ is closed to new replies.