Forum Replies Created
-
AuthorPosts
-
Not 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; }
Ok, 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.
Hello,
just place 2 // before theadd_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();
-
This reply was modified 3 weeks ago by
Marco.
-
This reply was modified 3 weeks ago by
Marco.
In 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.
I’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
Css line 1342.
Should be background-color: transparent; and not background-color: #transparent;
Hello,
in your .css you’re missing a } around line 983
.widget-headline { padding: 0 8px; padding: 0 0.5rem; /* 07 Lists ---------------------------------------------------------------------------------------------------- */Cheers.
-
This reply was modified 3 weeks, 1 day ago by
Marco.
-
This reply was modified 3 weeks, 1 day ago by
Marco.
No, just erase the widget-header.png.
#EEE is just a very light shade of gray.
Css 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);
-
This reply was modified 3 weeks, 1 day ago by
Marco.
-
This reply was modified 3 weeks, 1 day ago by
Marco.
The 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 ); } }
Hello,
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 );
-
This reply was modified 3 weeks, 1 day ago by
Marco.
-
This reply was modified 3 weeks, 1 day ago by
Marco.
Hello,
css line 1668, there’s an 820px width. Check if this works:
#inner .wrap, .full-width-content #inner .wrap { width: auto; }Marco
Hello,
you have 5<strong>and just 2</strong>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.
-
This reply was modified 3 weeks, 2 days ago by
Marco.
-
This reply was modified 3 weeks, 2 days ago by
Marco.
Hello,
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.
-
This reply was modified 3 weeks ago by
-
AuthorPosts