Customize motif theme

  • Unknown's avatar

    Hi there I need some help with my website: http://jymobi.ca

    1. How do I center my top menu?
    2. On the grid page is there any way of taking out the space between the white description box and the grid boxes? [http://jymobi.ca/services/]
    3. For the leave a reply option can I take out the text “leave a reply”?
    4. For the title attributes is there any way of increasing the font size?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, give the following a try and see what you think.

    1. Center top navigation

    .main-navigation {
        text-align: center;
        height: 45px;
    }
    .main-navigation ul {
        display: inline-block;
    }

    2. Services (grid) page: the following reduces the space between the three boxes and the top description box.

    .page-template-page-templatesgrid-page-php .hentry {
        margin-bottom: 0;
    }

    3. You can change the text above the comments box at Settings > Discussion (scroll to the bottom). If you want to get rid of entirely, add the following CSS.

    #respond h3.comment-reply-title {
        display: none;
    }

    4. When you say “title attributes” are you referring to the post and page titles? If so, add the following and adjust as desired.

    .wf-active h1 {
        font-size: 1.90605rem;
    }
  • Unknown's avatar

    Thank you so much for the help! Your suggestions were perfect.

  • Unknown's avatar
  • The topic ‘Customize motif theme’ is closed to new replies.