Forum Replies Created
-
AuthorPosts
-
kdrewien
MemberWere you able to display featured images on "regular" posts?
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberThanks for your response. The theme is written to display posts on the homepage based on the reading settings.
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberNever mind, the steps were correct. It just took a while for the changes to appear.
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberWhen you navigate to Genesis settings do you see an option to display the title as text or image? Or, in Appearance > Header scroll down to 'display text' and check the box. Either option will pull the title from Settings > General into the header.
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberPlease provide more information about the theme you are using, a link to your site, and what you want to accomplish. Logos are often in the title area of the header and can be displayed as text or an image.
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberI recommended the settings below because you wanted to remove the tagline (.site-description). When you modify .site-description to display: none; the title of the post moves up too close to the ad. So, I suggested adding 2.5 rem to the bottom margin. The order of the margin settings are top, right, bottom, left.
If you are going to keep the tagline, then modify the bottom margin to 0.
.featured {
margin: 25px 0 25px 0;
margin: 2.5rem 0 2.5rem 0;
padding-top: 3rem;
text-align: center;
}
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberYou can not see any changes to your site because you are either not editing the correct file, or the changes you make are not being saved.
Make certain you are editing this file:
http://www.wristreview.com/wp-content/themes/eleven40-pro/style.cssCheck the file permissions. Do you have permission to write/modify?
http://codex.wordpress.org/Changing_File_Permissions
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberPlease tell me step by step what you are doing to make changes to the style.css file.
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberSorry for the delayed response.
I misunderstood your reference to "tagline". More correctly you were referring to the "site description". Make this change in your style.css folder: add display:none;
.site-description {
display: none;
}This changes the white space around the Delma ad. Make this change in the style.css file:
.featured {
margin: 25px 0 25px 0;
margin: 2.5rem 0 2.5rem 0;
padding-top: 3rem;
text-align: center;
}Be sure to save the changes you made.
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberThe tagline in the header automatically pulls the tagline from Settings > General. A quick fix is to leave the tagline data box empty. When I get in front of a computer later today I will update this reply. I'm currently limited to my tablet and unable to review the code.
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberAfter making the change in the style.css file, did you click 'update' to save the change?
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberI recommend using a handy tool which allows you to preview the style sheet for your theme. You will hover over the white area you want to alter, right click, and then select the tool to inspect the code for that area of your theme. This tool allows you to preview changes, so you can get just the look you want before editing the actual style.css file.
An easy way to get started is by using Firebug - https://getfirebug.com/
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberI find it easier to work with my theme when I have content in place.
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Supportkdrewien
MemberYou can play with the margin and/or padding around the image. The code below is on line 1791 in your style.css file. Be sure to save a copy of the style.css file before you begin editing, and it's recommended that you do so using ftp instead of Appearance > Editor within the site.
.featured {
margin: 6.5rem 0 0 0;
padding-top: 3rem;
text-align: center;
}If you are not familiar with the difference between margin and padding this article will help:
http://www.w3schools.com/css/css_boxmodel.asp
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and SupportSeptember 18, 2013 at 9:58 pm in reply to: Limit Number of Posts Displayed in Category Archive #63333kdrewien
MemberAs always, I post a question and find the answer. In this situation I simply modified the Reading Settings. Please mark this post as resolved.
WordPress Consultant & Trainer
WP Site – Atlanta WordPress Training and Support -
AuthorPosts