Forum Replies Created
-
AuthorPosts
-
TWFMember
by ftp , download your wp-config.php , edit this , and upload this
TWFMemberTry by ftp:
edit wp-config.php and delete (or comment // ) define('WP_CACHE', true);
TWFMemberHello , try to clear and deactivate w3total cache plugin.
TWFMember
/** Customize the read more link */
add_filter( 'get_the_content_more_link', 'custom_read_more_link' );
function custom_read_more_link() {
return '... [Continue Reading]';
}
Source:http://www.briangardner.com/code/customize-read-more-link/
TWFMemberSet you "Time Between Slides (in milliseconds): " to 1000000000
TWFMemberYou have css error, on iPad your site don't display correctly .
TWFMemberhello in style.css (child) ...
line 1231
#footer-widgets .wrap {
background: none repeat scroll 0 0 #FFFFFF;
border-top: 3px solid #444444;
box-shadow: 0 0 3px #BBBBBB;
overflow: hidden;padding: 30px 0 0;line 1256
.footer-widgets-1 {
float: left;
margin: 0 20px 0 25px;
width: 300px;
}
😉
TWFMemberIn css :background-size:cover;
April 13, 2013 at 2:29 pm in reply to: How do I create a line between posts (to separate them) #35252TWFMemberTWFMemberThis reply has been marked as private.April 12, 2013 at 10:37 pm in reply to: How do I create a line between posts (to separate them) #35178TWFMemberor in functions.php
function add_line_after_post(){
echo "<hr />";
}
add_action( 'genesis_after_post_content', 'add_line_after_post' );and style your css <hr>
hr {border:0; box-shadow: 0 2px 3px #333333; }
April 12, 2013 at 8:15 pm in reply to: How do I place a reference to a file in the head section of my website? #35134TWFMemberHello, your <h1><h2> and sidebar titles , are in ProximaNova-Bold,arial,sans-serif , on home, post, category.
To insert the code, I was thinking more in genesis -> Theme settings -> Header and Footer Scripts.(header)
Sorry for my english 😉
April 11, 2013 at 10:05 pm in reply to: How do I place a reference to a file in the head section of my website? #34918TWFMemberHello, you can put the script to header/footer scripts
-
AuthorPosts