Motif Theme – Customization Help

  • Unknown's avatar

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

    1. How do I center the copyright text and blog at wordpress footer?
    2. How do I center my logo on my header?
    3. Is there any way of spacing out my menu items more?
    4. For the grid layout [http://jymobi.ca/services/] is there any way of hiding the featured image from showing up on my page but still have it visible on the grid? I was able to do this for my articles post page but the CSS code doesn’t work for pages.

    Thanks in advanced!

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

  • Unknown's avatar

    1. To center the copyright and footer credits, add the following

    .site-info {
        text-align: center;
    }

    and then modify your existing copyright rule adding the left and right auto margins as below

    .site-info:before {
        color: #000000;
        content: "Copyright © 2014 JYMOBI Senior Health and Fitness - All Rights Reserved";
        margin-left: auto;
        margin-right: auto;
    }

    2. To center your logo, add this CSS

    .site-image {
        text-align: center;
    }

    3. To add more space between your menu items, add the following and edit the 2.267em value as desired.

    .main-navigation li {
        padding-right: 2.267em;
    }

    4. To hide the featured image from the single post pages, but keep it showing on the grid (services) give the following CSS a try.

    .page-child .entry-thumbnail {
        display: none;
    }
  • Unknown's avatar

    I’m having an issue with the “feature images”. So I have feature images that show up as thumbnails on my pages linked to my grid page and that works perfectly fine. The problem is that I don’t want that same image appearing inside of the page itself. Is there anyway to make it so that it only appears in that thumbnail and not in the page itself?

  • Unknown's avatar

    Hi @flem0328, I’m not seeing the motif theme on any of the sites associated with your username. Can you provide a link to the site you are talking about?

  • Unknown's avatar

    It’s on a .org installation, i just reallized that this is a .com forum.

  • Unknown's avatar

    No problems and best of luck.

  • Unknown's avatar

    Hi @thesacredpath. Thank you so much for the help! It’s just what I wanted.

    Take care.

  • Unknown's avatar
  • The topic ‘Motif Theme – Customization Help’ is closed to new replies.