Forum Replies Created
-
AuthorPosts
-
Alex
ParticipantWe have a contact form where people can provide their details and get a quote precise, but showing price quotes would mean every competitor could see what our prices are and figure out what our material costs are. I don't know of anyone in this industry that provides pricing outright.
Alex
ParticipantHello,
It is showcase-pro, last theme was generate and I made a mistake in the post. No way to edit it now.
Alex
ParticipantHey buddy, I took a nap and figured it out. Why it works - I don't know, but I'm not touching it.
Check out this guys guide:
http://blackhillswebworks.com/2013/05/10/how-to-replace-the-studiopress-background-header-image-with-a-real-image-logo/This is what worked for me:
In functions.php have:
//* Remove the header right widget area unregister_sidebar( 'header-right' ); /** * Filter the genesis_seo_site_title function to use an image for the logo instead of a background image * * The genesis_seo_site_title function is located in genesis/lib/structure/header.php * @link http://blackhillswebworks.com/?p=4144 * */ add_filter( 'genesis_seo_title', 'bhww_filter_genesis_seo_site_title', 10, 2 ); function bhww_filter_genesis_seo_site_title( $title, $inside ){ $child_inside = sprintf( '<a href="%s" title="%s"><img src="'. get_stylesheet_directory_uri() .'/images/dhead.png" title="%s" alt="%s"/></a>', trailingslashit( home_url() ), esc_attr( get_bloginfo( 'name' ) ), esc_attr( get_bloginfo( 'name' ) ), esc_attr( get_bloginfo( 'name' ) ) ); $title = str_replace( $inside, $child_inside, $title ); return $title; } // End bhww_filter_genesis_seo_site_title /** * Remove the site description * * @link http://www.briangardner.com/code/remove-header-elements/ */ remove_action( 'genesis_site_description', 'genesis_seo_site_description' ); //* Add support for custom header add_theme_support( 'custom-header', array( 'header-selector' => '.site-title a', 'height' => 150, 'width' => 1140, ) );
Also, that guide says to delete the custom header - but doing so hid the header on my site so I have to have custom header but then select "no header" in the header selection menu.
Alex
ParticipantHey there - sorry to interject, but I'm having a similar problem.
On this site I've set a full-sized header but it doesn't behave responsively.
I've been trying to make it work, and it is better than vanilla, but still doesn't behave properly.
Any help is appreciated.
Alex
ParticipantWell that sucks.
I'm currently having trouble with a third party theme that is promised to work with 1.9.2 but it isn't working.
I want to run a quick test to see if it works but I can't. And there is no resource offered here so literally the only places for me to turn is scouring my server for an older version or using a pirated website to download a hacked genesis.
August 28, 2013 at 1:48 pm in reply to: Going Green – Chiropractic Center of Walnut Creek [Showcase] #59294Alex
ParticipantThanks for your comment - looks like I didn't change the url after transferring domains.
Alex
ParticipantCenter image is too lossy
Save it at higher quality, I can see the pixels and I can tell it's been shopped.
Also, why not put the phone number into header_right or as a long header (however it works)? If you put it to header right you can even add a
<a title="Call us 55555" href="tel:+15555555555"><img src="srcimg" alt=" "></a>
so people on mobile could tap it to call. Works for skype, too.
Alex
ParticipantI messed around with that for like an hour and it didn't work.
Then I changed
img.post-image { max-width: 700px; }
to
img.post-image { background: none; display:none; }
Alex
ParticipantThis is what I'm looking at:
http://media.share.pho.to/1s31E/353f453d_o.png
Leaving a 9th comment spaces it normally, any comment that is >3 and <9 threads deep is not nested properly.
Please test on this page:
http://www.bayareatechpros.com/nested-comments-test/
This also happens with the default theme, not just on my website.
Alex
ParticipantI have fixed the header now. A few color changes (like submenu) and maybe adding a background to titlebar of widgets remain. Thank you for your comments.
-
AuthorPosts