Forum Replies Created

Viewing 15 replies - 61 through 75 (of 152 total)
  • Peninah

    (@highlight_creative)

    I had this issue, too. A site I popped in on (didn’t code, don’t know much about what’s going on) has this plugin, and most of the themes and plugins needed updating.

    Once updated, Master Slider stopped working. In this case, I disabled the minify plugin that was installed (Better WordPress Minify), and it worked.

    I don’t know if this was an issue with the particular minify plugin or minification in general, but thought I’d post my solution.

    Forum: Themes and Templates
    In reply to: Search Bar
    Peninah

    (@highlight_creative)

    Did you try uploading the folder directly via something like Filezilla?

    My only advice is to completely delete the child theme, and make sure your parent theme is working properly (I’ve seen people mess up their parent theme when creating child themes.)

    Then, pick a good tutorial like the one I linked above, or I think I’ve seen one on Elegant Themes that was easy to follow, and follow it.

    Forum: Themes and Templates
    In reply to: Search Bar
    Peninah

    (@highlight_creative)

    What’s not working? I don’t see anything technically wrong with this.

    Did you double check that the theme is spelled that way (no space, capitals) in the theme folder? And that the way you wrote it in the template is how they write it? Both of those have to be exact.

    I don’t think this should make a difference, but you could also change the version number to 1.0 or delete that line.

    Also, just to check, sometimes I mistakenly name my file styles.css with an “s” instead of just style.css.

    Forum: Themes and Templates
    In reply to: Search Bar
    Peninah

    (@highlight_creative)

    I see it now–you’re missing the “template” declaration. That’s where you tell WordPress what the parent theme is.

    Add–
    Template: RefinedStyle

    (or whatever its proper name is)
    And try that.

    Or you can check this tutorial to see it in action. You’ve put the original author, author uri, and version number, but those can be your own, as you’re creating the child theme. (It doesn’t change if it works or not, just saying.)

    (It also tells you how to enqueue the stylesheet instead of using @import, as it’s technically best practice now, although both work.)

    Forum: Themes and Templates
    In reply to: Search Bar
    Peninah

    (@highlight_creative)

    Your comments are a bit off.

    CSS “comments” start with /* and end with */. They hide all code in between.

    Yours starts right, but after the version, you’ve got another opener instead of a closing tag, */ . You also then have a second open comments tag, after the import line. You can delete that one.

    Let’s see if that helps.

    Forum: Themes and Templates
    In reply to: Search Bar
    Peninah

    (@highlight_creative)

    Your theme is working fine, but your child theme is having the error?
    Are you certain your child theme was created correctly? There are some great tutorials available online if you aren’t familiar with the process.

    Peninah

    (@highlight_creative)

    That’s a good point to notice.
    I looked at the Glades theme page, and I don’t see any samples with a header, so I’m still not sure I know what you’re referring to (the static page must be set right now).

    Since it sounds like a theme issue, have you tried to ask the theme author?

    Peninah

    (@highlight_creative)

    Can you provide some more information?
    Did you change anything in between when the header displayed and when it didn’t?
    Where is the header image supposed to be? (on top of the menu, below it, on the side, etc)
    Is the custom header still uploaded in the backend?

    Forum: Themes and Templates
    In reply to: Search Bar
    Peninah

    (@highlight_creative)

    Your easiest option is to hide it with css:

    .search-box {
      display: none;
    }

    If your theme has a custom CSS box (sometimes they do), you can place this code there.

    Otherwise, you’ll need to create a child theme (google for a tutorial if you need–there are excellent ones available online) and place it in the child theme’s style.css.

    You could also find it in the theme’s templates/files and make a copy in your child theme, and remove the search.
    You’d be looking for:
    <?php get_search_form(); ?>

    Peninah

    (@highlight_creative)

    I don’t know if this will help, but the first step is always to make sure everything (plugins, themes, WordPress) is updated.

    Peninah

    (@highlight_creative)

    🙂 So glad to hear that! Chrome element inspector or Firebug is great for this kind of thing. If you’re not using them, you might want to check into it, they’re easy to use.

    Peninah

    (@highlight_creative)

    A link to your site would be helpful 🙂

    The easiest way to achieve your goals would be with widgets. You could use a text widget for the brief outline, and look for a recent posts widget for the blog box.

    You just have to make sure you are using a theme with a sidebar or widgetized area where you’d like these boxes to be.

    Peninah

    (@highlight_creative)

    Using Chrome dev tools, it looks like the issue is caused by this in the theme’s styling:
    #site-description {
    margin: 0 270px 3.65625em 0;
    }

    Changing this margin should help.

    Peninah

    (@highlight_creative)

    Forgive me if I’m asking an obvious question, but are you on a Linux server? I have accidentally been on Windows (clients’) before and not realized it and had strange problems.

    Peninah

    (@highlight_creative)

    Thanks, Daniel!

Viewing 15 replies - 61 through 75 (of 152 total)