Bryan Hadaway

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 88 total)
  • Author
    Posts
  • in reply to: Google AdSense #3621
    Bryan Hadaway
    Keymaster

    What’s the website? If it’s too spammy or objectionable it might go against the AdSense Terms of Service:

    https://www.google.com/adsense/localized-terms

    Here’s some tips others have left about this issue:

    https://www.google.com/search?q=adsense+rejection+reasons

    in reply to: customization in home page nav #3618
    Bryan Hadaway
    Keymaster

    You’re welcome.

    in reply to: customization in home page nav #3616
    Bryan Hadaway
    Keymaster

    At this point it’s a little beyond the scope of what I can assist with for free, sorry and good luck with the project.

    in reply to: customization in home page nav #3613
    Bryan Hadaway
    Keymaster

    In that case, all you need to do is throw .home in front:

    .home nav ul li a {
      background: none repeat scroll 0 0 #eee;
      border-radius: 50%;
      color: #777;
      display: block;
      float: left;
      font-family: “Raleway”,sans-serif;
      font-size: 100%;
      font-weight: 500;
      height: 120px;
      line-height: 120px;
      margin: 1%;
      padding: 0;
      text-align: center;
      width: 120px;
    }
    in reply to: customization in home page nav #3607
    Bryan Hadaway
    Keymaster
    nav ul li a {
      background: none repeat scroll 0 0 #eee;
      border-radius: 50%;
      color: #777;
      display: block;
      float: left;
      font-family: "Raleway",sans-serif;
      font-size: 100%;
      font-weight: 500;
      height: 120px;
      line-height: 120px;
      margin: 1%;
      padding: 0;
      text-align: center;
      width: 120px;
    }

    That should get you started.

    You’ll notice instantly that it opens a new can of worms for long link titles and dropdown menus. I would recommend reworking the titles so they’re all one word and get rid of traditional dropdown menus.

    Good luck.

    in reply to: Header Color in ColorSnap WP Theme #3599
    Bryan Hadaway
    Keymaster

    I understand what you mean now. The word “header” can be confused with multiple things. Technically, you’re right, it is a header, but for future reference most people refer to it as the site title and this will help move things along quicker.

    There’s no built in option either from the theme or WordPress to customize the site title and the proper way to customize is with CSS. So the way your friend helped you before is the proper way to handle it.

    The reason you may have lost the customization is from upgrading, assuming you weren’t using a child theme (http://codex.wordpress.org/Child_Themes).

    Here’s what you’re looking for:

    #site-title a, #site-title h1 a, #site-title h1 {
      color: #FF0000;
    }
    in reply to: Header Color in ColorSnap WP Theme #3596
    Bryan Hadaway
    Keymaster

    Not sure I understand what’s going on then, can you please share a screenshot of the problem?

    Thank you.

    in reply to: Header Color in ColorSnap WP Theme #3594
    Bryan Hadaway
    Keymaster

    It looks like the correct theme color is triggering for the menu, but if you want to manually style it:

    nav {
      background-color: #777 !important;
    }

    And of course change the color code.

    in reply to: Border Issue #3589
    Bryan Hadaway
    Keymaster

    Update:

    nav ul li a {
      border-right: 1px solid #333;
      color: #000;
      display: inline-block;
      font-family: Arial;
      font-size: 93%;
      font-weight: 600;
      line-height: 200%;
      margin-left: -0.3%;
      padding: 0 1%;
    }

    to:

    nav ul li a {
      border-right: 1px solid #333;
      color: #000;
      display: inline-block;
      font-family: Arial;
      font-size: 90%;
      font-weight: 600;
      line-height: 200%;
      margin-left: -0.3%;
      padding: 0 1%;
    }

    We’ve just lowered the font-size and then add:

    nav ul li:last-child a {
      border-right: 0 none;
    }
    in reply to: Header Color in ColorSnap WP Theme #3587
    Bryan Hadaway
    Keymaster

    Link to your site please and I’ll have a look.

    in reply to: List with show post count #3573
    Bryan Hadaway
    Keymaster

    You’re welcome.

    in reply to: List with show post count #3571
    Bryan Hadaway
    Keymaster

    I would recommend using a plugin like:

    https://wordpress.org/plugins/advanced-post-list/

    For this. There are many others to try if this one doesn not fit the bill exactly.

    in reply to: List with show post count #3568
    Bryan Hadaway
    Keymaster

    You’re welcome.

    in reply to: List with show post count #3566
    Bryan Hadaway
    Keymaster

    This is actually possible out-of-the-box.

    From your WP admin, go to:

    Appearance > Widgets

    Then drag the “Categories” widget to your sidebar and check the box that says “Show post counts”.

    in reply to: Translate the Theme Colorsnap #3556
    Bryan Hadaway
    Keymaster

    That’s correct, the theme is translation-ready, but you’ll need to prepare the language files.

    Here’s a great tool that makes the job easy:

    http://poedit.net/wordpress

Viewing 15 posts - 31 through 45 (of 88 total)