Sean Davis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve] Add border to navigation menu and pagePlease post a link to your site and I can give you the exact CSS you’d need.
Forum: Themes and Templates
In reply to: [Vortex] CCS Help with Side Bar WidgetsThe font of your widget titles is still handled with CSS like all other text on your site. You’ll just need CSS that targets the widget titles specifically and not any other text.
First, make sure you’re working in either a child theme or a plugin that gives you a CSS file to make edits to that is not your main theme CSS file. With that in place, use the following CSS to target your widget titles:
#sidebar .widget .widget-title { font-family: arial; }Of course, swap Arial out with your font of choice there. But that CSS selector is what you’ll use to target widget titles.
Forum: Themes and Templates
In reply to: Theme twenty fourteen how to remove "more images" navigation tagAnytime!
Forum: Themes and Templates
In reply to: How to remove blog features from my theme?No problem!
No problem!
Forum: Themes and Templates
In reply to: Centered twenty fourteen not workingNo that CSS is working just as it should. That’s doing what I pointed out in my last comment… centering the entire page element.
Tell me, where are you writing your CSS? I looked at the stylesheet that the above CSS is in and I don’t see anything else that’ll center any other elements on the site except for the primary nav menu which is written right above it. Where was the CSS that did the things that are no longer being done?
Also, I can only find one style.css file in your file structure. Are you using a child theme?
Forum: Themes and Templates
In reply to: Centered twenty fourteen not workingGotcha. Can you describe in more detail what was centered? I know that Twenty Fourteen has the entire site aligned to the left by default. When I look at your site, the entire page element is indeed centered. http://glui.me/?i=xw2bux28epfmilo/2014-04-22_at_9.26_PM.png/
Is this the change you’re talking about? If not, I’ll need more details.
Forum: Themes and Templates
In reply to: add logo to headerCan’t be 100% sure without seeing the theme’s file structure but most likely, there’s a header.php file in the parent theme responsible for outputting the title. If you can confirm that, copy that entire file to the root of your child theme. You’d then be free to edit that header.php file however you wish to override the parent theme’s header file.
Forum: Themes and Templates
In reply to: Centered twenty fourteen not workingCache issue, maybe? Do you have any cache plugins installed? If so, clear them. Also clear your browser cache. Make sure cache is not the culprit before going any further. If that doesn’t fix it, please post a link to your site.
Create and activate a child theme and copy the
loop.phpfile to the root of your child theme. Now in that file, find the following HTML and remove it (or comment it out).<section id="post-author"> <figure class="author-avatar"> <?php echo get_avatar( get_the_author_meta( 'ID' ), 148 ); ?> </figure> <h4><?php echo get_the_author_meta( 'display_name' ); ?></h4> <p><?php echo get_the_author_meta( 'description' ); ?></p> <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php _e( 'View more posts from this author', 'minimize' ); ?></a> </section>Forum: Themes and Templates
In reply to: How to remove blog features from my theme?Okay that’s just the sidebar. However, this theme adds some default “widgets” to display in the sidebar in the event you don’t put any widgets there yourself.
Your theme is modified so it’s hard for me to tell exactly what’s going on. But from what it looks like, you’ve placed no widgets in the “Sidebar” titled widget area and the default pages widget is showing.
What you can do is copy the sidebar.php template from Minimatica into the root of your child theme. Then in that file, these three lines are responsible for outputting default widgets:
<?php the_widget( 'WP_Widget_Search' ); ?> <?php the_widget( 'Minimatica_Ephemera_Widget', array( 'title' => 'Asides' ) ); ?> <?php the_widget( 'WP_Widget_Pages', array( ) ); ?>You are free to remove those lines. However, that doesn’t remove the sidebar altogether. At that point, you’re getting into some pretty heavy layout customizations.
Forum: Themes and Templates
In reply to: Does a child theme override Mobile responsive layout?No problem. Just go to dashboard -> Jetpack and find the “Mobile Theme” module. Click the “Learn More” button and the “Configure” button next to it will turn into a “Deactivate” button. Click that and it’s turned off.
Forum: Themes and Templates
In reply to: Does a child theme override Mobile responsive layout?Looks like you have Jetpack installed and the Mobile Theme module is activated. http://jetpack.me/support/mobile-theme/
Forum: Themes and Templates
In reply to: How to child theme a theme with the Foundation frameworkIf you’re using a child theme to do this, you still need to work inside of your child theme’s style.css file. There’s no need to duplicate the foundation.css in your child theme.
If the style rules in your child theme’s style.css are not overwriting the foundation.css rules from the parent theme, it’s most likely because you child theme CSS selectors aren’t strong enough.
And to be sure, test and make sure the child theme’s style.css is set up correctly to begin with.
Forum: Themes and Templates
In reply to: Theme twenty fourteen how to remove "more images" navigation tagThat’s baked into the widget. The simplest way to get rid of it is to add this to your child theme CSS file.
.content-sidebar .widget_twentyfourteen_ephemera .post-format-archive-link { display: none; }