Amor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bug after the comment of website’s managerYou can temporarily fix that by adding
.comment_avatar img {
max-width: 80px;
}on your custom CSS
Forum: Fixing WordPress
In reply to: Custom CSS for Posts Pages OnlyHi!
You can try this:
.blog #secondary,
.single-post #secondary {
width: 32.9149%;
}
.blog #primary,
.single-post #primary {
width: 65.9575%;
}
.blog .entry-content,
.single-post .entry-content {
float:left;
width:605px;
overflow: hidden;
}
.blog h1,
.single-post h1 {
font-size: 20px;
font-size: 2.0rem;
}@media only screen and (max-width: 800px){
.blog #primary,
.single-post #primary {
width: 100%
}
}To make the Name Field required (Name *), you have to select YES in the ‘Make NAME field Mandatory?’ in the form option.
HTH
Forum: Plugins
In reply to: [Contact Form 7] Form Not SubmittingI think you are missing the [submit] tag
Should be: <p>[submit class:button “Proceed to Payment”]</p>This one worked for me.
function storefront_child_enqueue_styles() {
wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’, array( ‘storefront-style’ ) );
}
add_action( ‘wp_enqueue_scripts’, ‘storefront_child_enqueue_styles’ );