Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    In reply to: Page Template CSS

    #46470

    Link to page where you would like this to appear?

    Mod

    In reply to: changing font awesome colors

    #46458

    That is working for me in Chrome (well, Chromium) and also Firefox on Ubuntu 16. I had to play around with it, but I believe the issue is that you are using the webkit vendor prefix. Something like this should work in all browsers:

    .colored-icon .text.has-icon .fa {
    color: #3c8e25;
    background: -linear-gradient(135deg, #87069e, #1ca4be);
    background-clip: text;
    text-fill-color: transparent;
    background: -webkit-linear-gradient(135deg, #87069e, #1ca4be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background: -moz-linear-gradient(135deg, #87069e, #1ca4be);
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    }

    You can probably do away with the background-clip, as I don’t believe these elements have a border. (See https://developer.mozilla.org/en-US/docs/Web/CSS/background-clip for more info.)

    Also, the text-fill-color is non-standard and will not work on all browsers. (See https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-fill-color for more info on that.) You should experiment to see if you can do without it.

    Quote:
    Not intended, just wasn’t aware, thanks. =)

    Keep in mind that a lot of people use right-click to navigate through websites, so disabling it makes it hard for some people to move around in them.

    Hope this helps. Any other questions, just let us know.

    Mod

    In reply to: Slider Settings

    #46472

    The Graphene slider is meant to display post and/or page information. If you only want to display pictures, you may want to forego the Graphene slider altogether and use a slider plugin, of which there are many that will do what you want.

    Mod

    In reply to: changing font awesome colors

    #46456

    It is difficult (but not impossible) to look closely at your site when you have disabled right-click.(Which does nothing to protect your content, btw.) This may be why no one has responded.

    (Hint: Enable right-click.)

    Mod

    In reply to: Child theme never works anymore

    #46464

    Have you tried the usual debugging methods?

    Mod

    Not sure this will work, but you can try this in custom CSS:

    #text-4,
    #text-5 {
    width: 240px !important;
    }
    #text-3 {
    width: 360px !important;
    }
    #sidebar_bottom .sidebar-wrap {
    width: 0;
    }

    That’s kind of a hack, but it may work.

    Mod

    In reply to: replace slider dots with arrow – code not working

    #46423

    That should work. I’m not quite sure what is going on here.

    Mod

    In reply to: replace slider dots with arrow – code not working

    #46420

    That’s weird, because it should work.

    When I copy and paste into a validator from your stylesheet here: http://johnbarefield.com/test/wp-content/themes/graphene-child/style.css?ver=4.6.1

    I get errors.

    But when I download your stylesheet, and copy and paste into a validator, I get no errors.

    This makes me think there may be an encoding issue with your stylesheet. Because when I inspect your page (press f12—it will teach you a lot!), I see the browser combining the two rules in your stylesheet. So, next question:

    What program/application are you using to write your stylesheet?

    Second question:

    Do you know what encoding that program/application is using?

    Mod

    In reply to: Any pictures don't appear

    #46431

    Thanks for the links. I will check tomorrow morning on my phone.

    Mod

    In reply to: Child Theme never works

    #46443

    Specifically, which css tags are not working in the child theme? Do they not work anywhere on the site, or only on select pages/posts?

Viewing 10 posts - 11 through 20 (of 5,839 total)