Forum Replies Created
-
AuthorPosts
-
February 25, 2013 at 5:49 pm in reply to: Metro Theme – Header Image and Background Color won't change #22796
Please see this Thread: http://www.studiopress.com/forums/topic/metro-background-tiled/ regarding the background issue. The header issue fix is directly above http://www.studiopress.com/forums/topic/metro-theme-header-image-and-background-color-wont-change/#post-22734
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookHi Ruby. Is this all resolved at this point? I just wanted to check in and make sure

Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookFebruary 20, 2013 at 11:47 pm in reply to: Education Theme – Featured blog excerpt posts cut off on Iphone #21889I would put it in this one: @media only screen and (max-width: 800px)
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookSeems to display fine now as a jpg
http://beachbaylandscaping.co.nz/wp-content/themes/crystal/images/logo.jpg
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookFebruary 18, 2013 at 6:22 pm in reply to: Education Theme – Featured blog excerpt posts cut off on Iphone #21159It looks like you have a width here that you’ll need to override in the responsive section:
.featuredpage .page, .featuredpost .post { border: medium none; margin: 0 0 15px; overflow: hidden; padding: 0 0 15px; width: 600px; }
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookI’m glad you’re pixelating!! Love it

Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookHi Ruby!
For future reference, you can also submit a support ticket for issues relating to theme setup through http://my.studiopress.com/help/
It appears you have installed Genesis Slider instead of Genesis Responsive Slider. Deactivate Genesis Slider, then install this one: http://www.studiopress.com/plugins/genesis-responsive-slider. Once you have the settings, including the slider dimensions setup, run this plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/.
For your header, since you’re using a wide logo, find the following css in style.css:
#header { margin: 0 auto; min-height: 100px; width: 100%; }Change it to:
#header { background-color: #FFFFFF !important; background-size: contain !important; margin: 0 auto; min-height: 100px; width: 100%; }
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYou’re welcome! It’s nice when it’s an easy answer
PS. No need to hide. Most people don’t know that!
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYou can change this under Settings > Reading
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookActually the How To has instructions for both of these : )
Login my.studiopress.com and go here http://my.studiopress.com/setup/blissful-theme/
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookWhat is your URL?
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookRemove this from your style.css file:
.header-image #title a { background: url("images/logo.png") no-repeat scroll left center transparent; }
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookFebruary 13, 2013 at 1:17 pm in reply to: Change permalink '/listings/' to '/apartments/' in AgentPress #20122Like this:
add_filter( 'agentpress_listings_post_type_args', 'child_agentpress_listings_post_type_args' ); function child_agentpress_listings_post_type_args( $args ){ $args['labels']['name'] = 'Apartments'; return $args; }You can pretty much take any of the args from this:
function create_post_type() { $args = apply_filters( 'agentpress_listings_post_type_args', array( 'labels' => array( 'name' => __( 'Listings', 'apl' ), 'singular_name' => __( 'Listing', 'apl' ), 'add_new' => __( 'Add New', 'apl' ), 'add_new_item' => __( 'Add New Listing', 'apl' ), 'edit' => __( 'Edit', 'apl' ), 'edit_item' => __( 'Edit Listing', 'apl' ), 'new_item' => __( 'New Listing', 'apl' ), 'view' => __( 'View Listing', 'apl' ), 'view_item' => __( 'View Listing', 'apl' ), 'search_items' => __( 'Search Listings', 'apl' ), 'not_found' => __( 'No listings found', 'apl' ), 'not_found_in_trash' => __( 'No listings found in Trash', 'apl' ) ), 'public' => true, 'query_var' => true, 'menu_position' => 6, 'menu_icon' => APL_URL . 'images/apl-icon-16x16.png', 'has_archive' => true, 'supports' => array( 'title', 'editor', 'thumbnail', 'genesis-seo', 'genesis-layouts', 'genesis-simple-sidebars' ), 'rewrite' => array( 'slug' => 'listings' ), ) ); register_post_type( 'listing', $args ); }
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYou’re welcome!
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookHi Hidde!
Instead of align=”middle” or align=”center” on your image. use this:
style="margin: 0 auto; display: block"
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on Facebook -
AuthorPosts