Forum Replies Created
-
AuthorPosts
-
Marco
Member1) replace the content of your responsive-menu.js with this:
jQuery(function( $ ){ $(".nav-primary .genesis-nav-menu").addClass("responsive-menu").before('<div id="responsive-menu-icon"></div>'); $(".nav-secondary .genesis-nav-menu").addClass("responsive-menu").before('<div id="responsive-menu-icon"></div>'); $("#responsive-menu-icon").click(function(){ $(".nav-primary .genesis-nav-menu").slideToggle(); $(".nav-secondary .genesis-nav-menu").slideToggle(); }); $(window).resize(function(){ if(window.innerWidth > 768) { $(".nav-primary .genesis-nav-menu").removeAttr("style"); $(".nav-secondary .genesis-nav-menu").removeAttr("style"); } }); });
2) in style.css where is the media query: @media only screen and (max-width: 768px) look for .nav-primary .responsive-menu and replace the css with:
.nav-primary .responsive-menu, .nav-secondary .responsive-menu { display: none; } .nav-primary #responsive-menu-icon, .nav-secondary #responsive-menu-icon { display: block; text-align: center; }
also comment the
.footer-widgets, /* .nav-secondary,*/ .site-footer, .site-header, .site-inner { padding-left: 5%; padding-right: 5%; }
tested on localhost. Works flawlessly.
Marco
MemberThis reply has been marked as private.Marco
MemberHello, if you mean the font weight on paragraphs you better change in
body
the weight to 300 ( now is 400).
June 3, 2013 at 1:58 am in reply to: How to Add Jetpack Share Buttons to Post Info and Post Meta Areas? #43774Marco
MemberThis reply has been marked as private.Marco
MemberNot the best solution but you could try to style the .property-quick-search like that:
.property-quick-search { border: 5px solid #FFF; float: right; min-height: 260px; overflow: hidden; padding: 11px; width: 240px; position: relative; top: 11px; }
Marco
MemberOk, first of all there's an error on line 876. The CSS property color #5555555 does not validate. It's #555; or #555555;
then, I don't see any div called #bbp.
Let's try this.
Just Paste this in place of the code you've done:
/*Buttons*/ /*------------------------------------------------------------*/ INPUT[type="button"], INPUT[type="submit"] { /*[disabled]background-color:#650221;*/ /*[disabled]color:#FFF;*/ /*[disabled]cursor:pointer;*/ /*[disabled]font-family:"century gothic";*/ /*[disabled]font-size:12px;*/ /*[disabled]font-weight:normal;*/ /*[disabled]padding:4px 7px 4px;*/ /*[disabled]text-decoration:none;*/ /*[disabled]width:136px;*/ /*[disabled]height:29px;*/ } .home .formsubmit INPUT { background-color: initial; color: #FFF !important; cursor: pointer; font-family: "century gothic"; font-size: 12px; font-weight: normal; padding: 4px 7px 4px; text-decoration: none; width: 136px; height: 29px; margin: 0; } #bbp_reply_submit, #bbp_topic_submit { /*[disabled]background-color:#650221;*/ /*[disabled]color:#FFF;*/ /*[disabled]cursor:pointer;*/ /*[disabled]font-family:"century gothic";*/ /*[disabled]font-size:12px;*/ /*[disabled]font-weight:normal;*/ /*[disabled]padding:4px 7px 4px;*/ /*[disabled]text-decoration:none;*/ /*[disabled]width:136px;*/ /*[disabled]height:29px;*/ } #bbp_reply_submit, #bbp_topic_submit { /*[disabled]background-color:#650221;*/ /*[disabled]color:#FFF;*/ /*[disabled]cursor:pointer;*/ /*[disabled]font-family:"century gothic";*/ /*[disabled]font-size:12px;*/ /*[disabled]font-weight:normal;*/ /*[disabled]padding:4px 7px 4px;*/ /*[disabled]text-decoration:none;*/ /*[disabled]width:136px;*/ /*[disabled]height:29px;*/ } #nav .searchsubmit { padding: 2px 7px 2px; } .reply A, .reply A:visited { padding: 0 4px; } #bbp_reply_submit:hover, #bbp_topic_submit:hover { background-color: transparent; border: 1px solid transparent; color: #FFF; text-decoration: none; width: 136px; height: 29px; } INPUT:hover[type="button"], INPUT:hover[type="submit"] { background-color: transparent; border: 1px solid transparent; color: #FFF; text-decoration: none; width: 136px; height: 29px; }
and in the
/*Miscellaneous Changes*/
/*-------------------------------------------------------------*/at the very end:
.wpcf7-form-control.wpcf7-submit { background-color: #650221; color: #FFF !important; cursor: pointer; font-family: "century gothic"; font-size: 12px; font-weight: normal; padding: 4px 7px 4px; text-decoration: none; width: 136px; height: 29px; } .wpcf7-form-control.wpcf7-submit:hover { background: #4D1070; } INPUT[type="button"], INPUT[type="submit"] { /*[disabled]background-color:transparent;*/ /*[disabled]border:none;*/ } #bbp_reply_submit, #bbp_topic_submit { background-color: transparent; border: none; }
I've commented something.
Let me know if we're on the right track.
Marco
MemberHello,
just place 2 // before the `add_action( 'genesis_loop', 'minimum_grid_loop_helper' );`like` //add_action( 'genesis_loop', 'minimum_grid_loop_helper' );`
You don't have to remove the `remove_action( 'genesis_loop', 'genesis_do_loop' );`.
If you need to remove the sidebar, just add this before the genesis();
`remove_action( 'genesis_after_content', 'genesis_get_sidebar' );`
genesis();
Marco
MemberIn the dashboard look for Settings / Discussion. There check if in Other comment settings is checked the Users must be registered and logged in to comment . If so, just uncheck it.
Marco
MemberI'm quoting Jesse.
For example the middle thumbnail is blurry even at full size...http://stanbos.nl/stanbos/wp-content/uploads/2013/05/stbos.jpg
Marco
MemberCss line 1342.
Should be background-color: transparent; and not background-color: #transparent;
Marco
MemberMarco
MemberHello,
in your .css you're missing a } around line 983
.widget-headline { padding: 0 8px; padding: 0 0.5rem; /* 07 Lists ---------------------------------------------------------------------------------------------------- */
Cheers.
Marco
MemberNo, just erase the widget-header.png.
#EEE is just a very light shade of gray.
Marco
MemberCss line 629 and below
#content #slider h2, #content #featured-bottom h2, #content #featured-top h2 { background: #EEEEEE url(images/widget-header.png); color: #FFFFFF; font-family: Trebuchet MS, Arial, Verdana; font-size: 12px; font-weight: bold; text-shadow: #055669 1px 1px; margin: 0; padding: 4px 5px 4px 10px; }
You have to change
background: #EEEEEE url(images/widget-header.png);
Marco
MemberThe code below may help you, just paste it in functions.php:
`
/** Redirect to single post page if there is one post in category/tag */add_action('template_redirect', 'child_redirect_to_post');
function child_redirect_to_post(){
global $wp_query;// If there is one post on archive page
if( is_archive() && $wp_query->post_count == 1 ){
// Setup post data
the_post();
// Get permalink
$post_url = get_permalink();
// Redirect to post page
wp_redirect( $post_url );
}}`
Marco
MemberHello,
copy this on functions.php just below the
`add_theme_support( 'genesis-footer-widgets', 3 );`function home_footer_widgets() { if ( !is_home() ) { remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' ); } } add_action( 'genesis_before_footer', 'home_footer_widgets',1 );
Marco
MemberHello,
css line 1668, there's an 820px width. Check if this works:
` #inner .wrap, .full-width-content #inner .wrap {
width: auto;
}`Marco
Marco
MemberHello,
you have 5 `` and just 2 `` you must close the 3 that are left.
This happens also in some other pages, while in http://www.rogerlapin.co.uk/corporate-magician-hire all looks good.
Marco
MemberHello,
I'd rather add 3 brand new footer widgets on home page and comment in functions.php the
`add_theme_support( 'genesis-footer-widgets', 3 );`You could also hide/show them via .css.
May 1, 2013 at 2:18 am in reply to: Changing height on Property Search widget (in AgentPress) #38707Marco
MemberThe Property Search Widget of dsIDXPress is a PITA.
Look at: http://lagunaagent.com/, to make it look like that I:
1) reworked the plugin widget code cause it has several in it.
2) reworked the .css as you could see in the style.cssFeel free to take some inspiration.
Marco
-
AuthorPosts