Sean Davis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Post separatorAh… totally forgot about that separator. It only appears when there’s no featured image used.
To increase the thickness, add this to your child theme CSS file or plugin that adds CSS edit functionality:
@media screen and (min-width: 401px) { .list-view .site-content .hentry { border-top: 4px solid rgba(0, 0, 0, 0.1); } }To adjust the color, change
rgba(0, 0, 0, 0.1)to whatever hex color code you’d like.Forum: Themes and Templates
In reply to: [Hueman] Menu TypefontsNo problem at all.
Okay I couldn’t seem to find the theme online anywhere except for wordpress.com so I can’t give you 100% specifics here.
But overall, what you’ll need to do is create a child theme and activate that. Then you’ll want to copy the template file responsible for outputting your single post pages down into your child theme in the same place structurally.
This file is most likely going to be single.php or a file that the single.php calls to… which will hold all of the HTML. Mixed up in that HTML will be a function called
the_post_thumbnailand that’s what’s used to output featured images. Removing it from that file will remove the images from featured posts.If you can point me to a download of this theme, I can be a lot more specific. Otherwise, what I’ve mentioned should get you started.
Forum: Themes and Templates
In reply to: [Duena] Modify length of menu bar or top navbarI’d give it a max-width so that it will not be any wider than you want it to be but it’ll still scale down for responsiveness:
.main-nav .navbar_inner { max-width: 700px; }Is your WordPress site self-hosted or are you using WordPress.com?
Forum: Themes and Templates
In reply to: [Sugar and Spice] Finding out color codesAnytime!
Forum: Themes and Templates
In reply to: [Responsive] Change main menu target="_blank"?Haha no problem.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Post separatorCan you describe in more detail what post separators you’re referring to?
Forum: Themes and Templates
In reply to: [Responsive] Change main menu target="_blank"?This is actually built into WordPress. Go to dashboard -> Appearance -> Menus and then click the “Screen Options” tab hanging from the top right corner of the screen.
There, make sure the “Link Target” box is checked. With that done, each draggable menu item gets a new checkbox option that allows you to set it to open in a new window.
Forum: Themes and Templates
In reply to: [Hueman] Menu TypefontsMake sure you’re working inside of a child theme or a plugin that lets you add CSS… then the following CSS should work just fine for you:
.nav a { font-weight: bold; }Forum: Themes and Templates
In reply to: [Sugar and Spice] Finding out color codesFrom what I can tell, emerald would be #36AB8A and peach is #F9AA89.
Forum: Themes and Templates
In reply to: [Patchwork] Removing comment section on static home pageThe first thing you want to do is make sure you’re using a child theme. Then with your child theme installed and activated, copy the
page.phpfile from Patchwork into the root of your child theme.In that new file, find:
<?php comments_template( '', true ); ?>Replace it with:
<?php ! is_front_page() ? comments_template( '', true ) : ''; ?>That will make sure any WordPress Page you decide to set as the home page will not have comments, but the rest of the Pages will continue to.
Forum: Themes and Templates
In reply to: [Vortex] CCS Help with Side Bar WidgetsAnytime!
Forum: Themes and Templates
In reply to: [Fifteen] Table LinesNo problem. 🙂
Forum: Themes and Templates
In reply to: [Fifteen] Table LinesMake sure you’re using a child theme or some sort of plugin that allows you to add CSS without editing core theme files. With that setup in place, the following CSS will remove the borders:
article table td { border: none; }When I looked at your stylesheet, it looks like you may be using some type of caching plugin. If that’s the case, you won’t see your changes as soon as you make them. You’ve have to clear all your caches first. Let me know if it works for you.