Hi there, I was trying to decrease border-bottom from 30px to 10px.
@import (min-width: 1200px)
.wpb_wrapper .wpb_content_element {
margin-bottom: 30px;
}
This code is from large-resolutin.css.
When I try to add this to style.css, nothing happens. How can I solve this?
@import (min-width: 1200px)
.wpb_wrapper .wpb_content_element {
margin-bottom: 10px;
}
Is there any other code I need to add in functions.css beside this:
<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}
Please help.
My site is now on test domain test.cia.rs