Forum Replies Created
-
AuthorPosts
-
Mike Imken
Member@gswartz -- are you using custom post excerpts? I was, and similarly found these solutions were not working.
I posted this in another Studiopress thread after it solved it:
This is an old question, but I was looking for a solution as well and no one has seemed to answer it properly here on the forums.
The issue is with the custom post excerpts. These solutions don't work for it in my experience.
This however solved it, courtesy of WPBeaches. Just change the themeprefix and adjust the CSS using the "more-link" class.
//Read More Button For Excerpt function themeprefix_excerpt_read_more_link( $output ) { global $post; return $output . ' <a href="' . get_permalink( $post->ID ) . '" class="more-link" title="Read More">Read More</a>'; } add_filter( 'the_excerpt', 'themeprefix_excerpt_read_more_link' );
Marketer – Designer – Developer
http://www.TargetPublic.comMike Imken
MemberThis is an old question, but I was looking for a solution as well and no one has seemed to answer it properly here on the forums.
The issue is with the custom post excerpts. These solutions don't work for it in my experience.
This however solved it, courtesy of WPBeaches. Just change the themeprefix and adjust the CSS using the "more-link" class.
//Read More Button For Excerpt function themeprefix_excerpt_read_more_link( $output ) { global $post; return $output . ' <a href="' . get_permalink( $post->ID ) . '" class="more-link" title="Read More">Read More</a>'; } add_filter( 'the_excerpt', 'themeprefix_excerpt_read_more_link' );
Marketer – Designer – Developer
http://www.TargetPublic.comMike Imken
MemberNot sure if this is the best way, but it seems to work in Chrome at least:
.addthis_toolbox { position: relative; left: -150px; top:-20px; }
Marketer – Designer – Developer
http://www.TargetPublic.comMike Imken
MemberI see! I didn't read your request very carefully did I? Yes, my initial suggestion would change the entire background for each post format.
To change the specific post format image backgrounds, you could add this:
.format-video .post-format-image { background-color: #ffffc0; } .format-aside .post-format-image { background-color: #dadeff; }
Marketer – Designer – Developer
http://www.TargetPublic.comMike Imken
MemberHi.
Looks like you have padding on posts, but not pages.
You could try adding this (change values as desired) to your CSS in the Content section :
#content .page { padding: 0 0 0 20px; }
Marketer – Designer – Developer
http://www.TargetPublic.comMike Imken
MemberOne option seems to be adding css for the format classes. Though you want some padding as well.
.format-video { background-color: #ffffc0; padding: 10px; } .format-aside { background-color: #dadeff; padding: 10px }
And you may want to remove the border-bottom on the .post class. Or perhaps change the color to a another shade of your specific post format color. Might be a nice effect.
Marketer – Designer – Developer
http://www.TargetPublic.comMike Imken
MemberThat page is missing
<div class="wrap">
which sets the width and margins.Not sure why unless you changed a template?
Regardless, if you can find where to add that back in, or add the following to your CSS file:
.content-sidebar-wrap { margin: 0 auto; max-width: 1140px; }
Marketer – Designer – Developer
http://www.TargetPublic.comMike Imken
MemberHi Shelley,
It's in the Images portion of your CSS
It was using img.aligncenter, but now it appears to be img.alignnone.
Either way they both have a 10px margin on the bottom:`
img.centered,
.aligncenter {
display: block;
margin: 0 auto 10px;
}img.alignnone {
display: inline;
margin: 0 0 10px;
}img.alignleft {
display: inline;
margin: 0 15px 10px 0;
}img.alignright {
display: inline;
margin: 0 0 10px 15px;
}`You could create a new class for the welcome images specifically or adjust the appropriate one above, if you don't need that 10px bottom margin on other images on the site.
Also, this is probably inserted with a Text widget in the "Welcome" section? If so, just put the image link without a class defined. I think that might work as well:
<img src="http://www.kreservices.com/wp-content/uploads/2013/08/Welcome_graphic_914x150px.png" width="914" height="150" alt="Find out how much my home is worth...">
Thanks for the info on the search widget!
Marketer – Designer – Developer
http://www.TargetPublic.comSeptember 17, 2013 at 11:27 pm in reply to: Change font color on Genesis Responsive slider excerpt #63130Mike Imken
MemberYou have several things trying to affect the headlines. This CSS code will cause some issues:
#home-slider h1, h2, h2 a, h2 a:visited, h3, h4, h5, h6 { color: #5EA699 !important; font-family: 'PT Sans', sans-serif; font-weight: 900; margin: 0 0 10px; line-height: 1.25; }
This is making the #home-slider h1 color change (which is irrelevant, because there is no #home-slider h1 in the code) and is overriding all headline selectors, so that all headlines will be #5EA699.
If you want just the title font in the slider to be white, change the CSS to this. But note it will be "invisible" due to the white background. This will also revert other headlines to black based on other headline CSS settings in your file:
#home-slider h2 a { color: #fff; font-family: 'PT Sans', sans-serif; font-weight: 900; margin: 0 0 10px; line-height: 1.25; }
If you want the other headlines to be the teal/green color, you will address those in the Headlines section.
Marketer – Designer – Developer
http://www.TargetPublic.comMike Imken
MemberHi,
I can help with the green box (called the Listing Box) and changing its color.
Find this code in your CSS file:
.listing-text { background: #4b8308; clear: both; color: #fff; font-size: 12px; padding: 5px 10px; position: absolute; right: 5px; top: 5px; }
And change the background property to a different value.
As far as the price, I've just started with creating a client's site with AgentPress so I'm not familiar yet with how it returns results. I have seen Carrie Dils propose an idea on how to fix that, but she says it may not work properly in all cases: http://www.carriedils.com/sort-agentpress-listings-by-price/
Marketer – Designer – Developer
http://www.TargetPublic.comSeptember 17, 2013 at 10:39 pm in reply to: Genesis Responsive Slider Text Not Aligned Properly #63125Mike Imken
MemberHi.
Looks like you posted this question twice. I submitted one possible solution on the other one here
Marketer – Designer – Developer
http://www.TargetPublic.comSeptember 17, 2013 at 10:34 pm in reply to: Genesis Responsive Slider Ghost Text Box Appears on Image #63123Mike Imken
MemberHi.
The font for your headline in the slider is too large. On some of those it actually goes beyond the border.
One option is adding this to your CSS file:
.home-featured-left h2 a {font-size: 32px;}
Marketer – Designer – Developer
http://www.TargetPublic.comMike Imken
MemberThat image has the image class "aligncenter" which has a 10px bottom margin. Remove that and it will fit.
By the way, I'm just setting up our first Agentpress site -- how did you create your Listings Search widget so that it has text fields, e.g. Min and Max price, etc.?
Marketer – Designer – Developer
http://www.TargetPublic.com -
AuthorPosts