Forum Replies Created
-
AuthorPosts
-
nunotmp
MemberMake sure your selectors have enough weight. Your form is wrapped in an id of
contactForm
so target it with#contactForm
and work from there. Place the css at the bottom of your css.
nunotmp
MemberThe author is controlled by the post info so you will need to add
remove_action( 'genesis_before_post_content', 'genesis_post_info' );
nunotmp
MemberIt is that block of CSS, more specifically it is the line
.metro-blue input:hover[type="submit"]
it changes with no issue using the developer tools. How are you editing the file? FTP or WordPress editor? Double check that it is saving correctly.
nunotmp
MemberYour css will be in the style.css file in the themes folder. You can navigate to your file like so
wp-content/themes/beautiful-pro/style.css
nunotmp
Membernunotmp
MemberI just took a look at the css and it looks like they assaign the class
alignleft
to the menu item. To do this simply add it to first menu item. Here is a screenshot to help you out. http://awesomescreenshot.com/0eb2451684
nunotmp
MemberIn the action
add_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
the functiongenesis_do_breadcrumbs
is called. This is simply a call to the breadcrumbs so you can place the function where you would like. More than likely there is a hook in the location you would like to show the breadcrumbs already but if not just call the function in your template files like sogenesis_do_breadcrumbs()
nunotmp
MemberTry using
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
This will target the post info and not the post meta.
nunotmp
MemberYou will need to add a background to either the #content div or .entry div.
Adding a background to line 387 will result to http://awesomescreenshot.com/00d22a9bbc.content-sidebar #content, .sidebar-content #content, #title-area { width: 65.277777777%; background: white; }
nunotmp
MemberHey Liz,
It looks like a stylesheet calls for the logo two times.
#title-area a { background: url(http://libbyconstruction.net/wp-content/uploads/2013/09/header-libby-construction.png) no-repeat !important; }
and
#header .wrap #title-area { background: url(http://libbyconstruction.net/wp-content/uploads/2013/09/header-libby-construction.png) left top no-repeat!important; }
if you remove both of these calls and add
#header .wrap { background: url(http://libbyconstruction.net/wp-content/uploads/2013/09/header-libby-construction.png) left top no-repeat!important; height: 120px; }
You header will display like so
September 28, 2013 at 10:29 pm in reply to: Can't figure out how to change dropdown menu color? #64645nunotmp
MemberIn your style.css file on line 1059
.genesis-nav-menu .sub-menu a { background-color: #02193A; /* Use this color instead */ font-size: 12px; font-size: 1.2rem; padding: 12px 16px; padding: 1.2rem 1.6rem; position: relative; width: 175px; }
nunotmp
MemberThe only issue I ran into is when I was attempting to display the cart when it was empty, I was getting an error. I wrapped the cart in this `
if ( sizeof( $woocommerce->cart->cart_contents ) == 0 ) {
echo '<p class="empty-cart">Your shopping cart is empty!</p>';
}
`
Other than that it was smooth sailing.
nunotmp
MemberYou may consider using Bill Erickson's "grid loop". This uses the
post_class
filter. http://www.billerickson.net/a-better-and-easier-grid-loop/
nunotmp
Membernunotmp
MemberSeptember 23, 2013 at 10:47 pm in reply to: How to insert custom markup outside of header's .wrap? #63931nunotmp
Member@garyj Thank you. Its good to know I got the thumbs up from a developer of your caliber. : -)
September 17, 2013 at 9:27 am in reply to: How to insert custom markup outside of header's .wrap? #62984nunotmp
MemberIf you look at the Genesis files you can navigate to Genesis>lib>structure>header.php. This is where these functions are created.
add_action( 'genesis_header', 'genesis_header_markup_open', 5 ); add_action( 'genesis_header', 'genesis_header_markup_close', 15 );
You don't really have to create a custom hook, you can insert your markup directly into the header_close function but I like to use hooks. 🙂
nunotmp
MemberYou can use the contact form here http://www.studiopress.com/contact
You can use any plugin/widget that WordPress allows.
nunotmp
MemberPerhaps. I am unfamiliar with WordPress MultiSite. I hope you get it figured out.
nunotmp
Member -
AuthorPosts