Sean Davis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Theme breaks after the latest update!!!What does “ruined the sidebars” mean? Widgets going? Errors output on the screen?
Forum: Themes and Templates
In reply to: [Maskitto Light] Padding in titles on front pageThat CSS appears to be inline so you won’t find it in an actual CSS file. It also has an important declaration on it. You’ll want to try to override this from a custom CSS plugin. Try using something like this:
.panel-grid-cell .page-section.page-blog { padding: 40px 0 !important; }Forum: Themes and Templates
In reply to: [Twenty Fourteen] Theme breaks after the latest update!!!What’s the exact error message that you get?
Forum: Themes and Templates
In reply to: JADE theme remove featured image from post contentI can’t seem to find your theme in the directory so I can’t tell you the exact changes you need to make. Are you sure you got your theme from wordpress.org? We can only support themes from the directory in these forums. If you got it from another location, you will need to contact their support.
Forum: Themes and Templates
In reply to: [InfoWay] Changing footer/menu overlay colorHi there. What do you mean when you say “footer or menu over”? I’ll take a few guesses. The following CSS would need to be placed in either your CHILD theme style.css file or a custom CSS plugin:
The footer background color:
.body_wrapper .footer-wrapper { background: #00f; }Main menu hover link background:
#MainNav #menu li:hover a, #MainNav #menu li.current_page_item a { background: #00f; }Forum: Themes and Templates
In reply to: [Flat] Change font colorsChanging font colors requires CSS that would need to be placed either in your *child theme* style.css file or in a custom CSS plugin like this: https://wordpress.org/plugins/reaktiv-css-builder/
What text colors are you trying to change? If you provide a link and describe the changes, someone may be able to give you the CSS you need.
Forum: Themes and Templates
In reply to: Center picture in slider-MaskittoHi there. Style changes are going to require CSS no matter what unless your theme has built-in design options that address your needs. I doubt that’s the case for centering pics in a slider, though.
If you post a link to your site (the page in question), I see no reason why someone couldn’t provide you with a CSS snippet that you could paste into your child theme or Custom CSS plugin.
Forum: Themes and Templates
In reply to: OK to use old theme if passes theme check?My initial answer is that you shouldn’t have any issues using an older theme. Running theme check is a great way to see if it’s still good. However, it’s not a guaranteed pass.
What I would do is check the changelog (assuming there is one) of the theme to see what the changes were to the newer versions. But don’t look for cosmetic or structural changes. See if there were certain bug fixes or security patches that led to the update. If those types of things were the reason for the major update, then that’s definitely something to be concerned with.
If that’s not the case, though, nothing wrong with using the older version.
Forum: Themes and Templates
In reply to: Latest Posts on Personal Theme.Hi there. I see the post you linked and then the two posts you’ve published since then: http://glui.me/?i=5gbe4fc8oh71k1j/2015-04-16_at_3.14_PM.png/
Make sure your caches are clear if you’re using a caching plugin.
Forum: Themes and Templates
In reply to: Weird CSS issueIt’s hard to say what the issue is. It sounds like caching to me at the moment. Are you using any caching plugins or CDN service? Does your host cache your website for you? If the answer to any of that is yes, clear all of your caches and disable them while making CSS changes.
Forum: Themes and Templates
In reply to: [Hueman] After Resizing Theme – Text doesn't FitDid you copy that text from somewhere? It looks as if it was pasted in place with some HTML entities mixed into the text. Here’s what I mean:
Text with no wrap issues: http://glui.me/?i=wha3y1vqgs1rs66/2015-04-16_at_2.58_PM.png/
Text with wrap issues: http://glui.me/?i=2435rkelaiw5n1d/2015-04-16_at_2.59_PM.png/
is an HTML attribute meaning “non-breaking space” and its behavior is explained here: http://www.sightspecific.com/~mosh/www_faq/nbsp.htmlSo unless you typed those non-breaking spaces in there, the text was probably copied from an editor or page that inserted them without you knowing. Check to see if that’s the case.
Forum: Themes and Templates
In reply to: [Tracks] Modify the prev/next post tekst and linksIf you’re already using a child theme, the easiest way to do this would be to create a folder in the root of your child theme called “content” and then inside of it, COPY (not move) the “further-reading.php” file into it from the parent theme (Tracks). The text you want to modify is in that file and can be modified right there in your child theme.
Forum: Themes and Templates
In reply to: [raindrops] Raindrop Theme FooterHi there. This is what I see in your footer: http://glui.me/?i=8yaoku2rnj3q91v/2015-04-16_at_2.18_PM.png/
Is that correct? If not, what exactly are you expecting to see?
Forum: Themes and Templates
In reply to: [JustWrite] header height modificationNo problem at all. Glad I could help.
Forum: Themes and Templates
In reply to: [Celestial - Lite] Left column on page & removing tags etcHi there. I took a look at the theme and here’s what I’m finding.
1. Go to the page in question and edit it. Then in the right sidebar under Page Attributes, select the “Page Left Sidebar” Template option. Then it should work. It took me 20 minutes to figure this out so you’re not alone. The way that works could stand to be a little more clear (even if it’s documented somewhere).
2. If you are 100% positive that you will not be separating your blog posts into multiple pages (like pagination within one published post), then the easiest way to do this is with CSS, so at least search engines can still pick up the information.
You could place the following in your *child theme* style.css file or perhaps in a custom CSS plugin:
.entry-footer { display: none; }If you do intend to use post pagination, you will need to remove those three sections with a template override. But we’ll only address that if you need it.