Bryan Hadaway

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 88 total)
  • Author
    Posts
  • in reply to: Text wrapping on images in ColorSnap #3553
    Bryan Hadaway
    Keymaster

    I see. One way to have complete control is to not set it as the featured image and instead manually insert it into the post that way you can choose alignment and other adjustments on a case-by-case basis.

    Otherwise, if you want to continue to use the featured image area, there would need to be one default style that covered them all. You could then style each different on each post, but not in an idealistic way.

    Let’s start with a link to one of your post pages and please describe how you want the featured image to be sized, floated etc.

    in reply to: ColorSnap color not applying #3550
    Bryan Hadaway
    Keymaster

    Fixed.

    Can take a few days for the review and approval process to complete so you can manually download the update from:

    https://wordpress.org/themes/download/colorsnap.1.0.5.zip

    in reply to: Colorsnap, changing colors #3545
    Bryan Hadaway
    Keymaster

    It is indeed very basic changing the whole color scheme to one color with just one option, for changing colors/styles individually in an even more specific manner will of course require a little CSS.

    Can I get the link to your site and an idea of exactly what you want styled how?

    Thank you.

    in reply to: Category List Posting in WordPress #3474
    Bryan Hadaway
    Keymaster

    Sounds like you’re looking for infinite scrolling.

    Try: http://wordpress.org/plugins/infinite-scroll/

    in reply to: Search Box #3427
    Bryan Hadaway
    Keymaster

    Clear (ignore this reply)

    in reply to: Icons in Navigation Bar #3426
    Bryan Hadaway
    Keymaster
    nav.toolbar2 > ul > li > a[title="HOME"]:hover {
      background: url(http://i143.photobucket.com/albums/r130/pmolloy4/brideface-home-icon_zps82abd6ee.png) no-repeat scroll center center rgba(0, 0, 0, 0);
    }

    And of course this is just a starting point and all sorts of other things can be done here and refined.

    [title="HOME"] is how you’ll identify each link. WEDDINGS, CLASSES etc will be the next ones to use.

    in reply to: Icons in Navigation Bar #3423
    Bryan Hadaway
    Keymaster

    Sure, there are many techniques for this.

    Something like this.

    Or something like the “Change Text Upon Hover” section here.

    If you can provide more detail and hopefully an image URL of one of the icons in mind for this I might be able to prepare a quick example.

    Thanks

    in reply to: Search Box #3420
    Bryan Hadaway
    Keymaster
    #newsearch #s {
      background: url(images/find.png) no-repeat scroll right center #fff;
      width: 200px;
    }

    Unless you’re willing to setup a child theme or perhaps already have, you can easily add new custom CSS with this plugin:

    http://wordpress.org/plugins/simple-custom-css/

    You’ll want to grab a search icon, many places to grab one:

    https://www.google.com/search?q=free+icons

    in reply to: robots.txt files for primary and add-on domains #3417
    Bryan Hadaway
    Keymaster

    Clear (ignore this reply)

    in reply to: Colorsnap header text won't change color #3411
    Bryan Hadaway
    Keymaster

    Yes, it’s hard-coded white as this will work great for most color choices.

    This is indeed a job for CSS:

    #site-title a, #site-title h1 a, #site-title h1 {
      color: #fff;
    }

    This is a super simple, minimalist theme and I don’t think I’ll be adding any more options to it.

    You may want to make sure that you have a child theme setup for added CSS though:

    http://codex.wordpress.org/Child_Themes

    Thanks

    in reply to: IE8 Issue #3407
    Bryan Hadaway
    Keymaster

    Yes, at this point in 2013, all my works are forward thinking. Besides the fact that I hate IE, I really do, as do most developers/designers, I don’t specifically neglect IE, I just design and code within standards compliance of HTML5 and CSS3 which even in latest versions of IE, happens to still be lacking.

    I also try to keep the code as pure as possible, not adding in browser hacks and the like. Another way to put it is that my work is standards-friendly, so in that effect, not IE-friendly. ;)

    Sorry. Happy to hear you’ve worked out a solution though.

    in reply to: IE8 Issue #3395
    Bryan Hadaway
    Keymaster

    More specifics please and if you can’t share a live example, screenshots please.

    Thanks, Bryan

    in reply to: Curation WordPress Theme #3388
    Bryan Hadaway
    Keymaster

    1. You can insert a break point manually in the post with <!--more--> or an all around easier way to control might be with:

    http://wordpress.org/plugins/advanced-excerpt/

    2. Not entirely sure what you mean, can I get the live link to an example please.

    Thanks, Bryan

    in reply to: robots.txt files for primary and add-on domains #3111
    Bryan Hadaway
    Keymaster

    I think we skipped into the specifics before really establishing what it is you want to do. Forget the domain stuff, what exactly is the goal in really basic terms as far as each website?

    I’m starting to think we should be talking about .htaccess redirects, but I’ll let you explain further.

    in reply to: robots.txt files for primary and add-on domains #3109
    Bryan Hadaway
    Keymaster

    This is actually pretty tricky at first glance.

    I brought this very same question to the Google forums to get some second opinions:

    https://productforums.google.com/forum/?fromgroups=#!topic/webmasters/7PitgGRXacI
    (sorry, the # is throwing off this link – you’ll have to copy and paste the whole URL)

    The most important thing you need to know is that the root robots.txt can effect addon domains in certain scenarios depending on how the URLs are used.

    Regardless, it’s best to give the root (as in your site) its own robots.txt and then every addon domain (as in a completely separate sites) their own robots.txt.

    Basically, just treat them all as completely separate websites and give them all their own separate robots.txt.

    The reason for this is because the Google bot doesn’t know the difference, it reads them all separately without acknowledging any connection.

    So, if it crawls primary.com it’ll be looking for robots.txt at:

    primary.com/robots.txt

    And if it’s looking at addon.com it’ll be looking for robots.txt at:

    addon.com/robots.txt

    Even if the robots.txt doesn’t variate at all, you still need to put one copy in the root and one in each addon domain folder.

    Thanks, Bryan

Viewing 15 posts - 46 through 60 (of 88 total)