My contact form is not being responsive
Add #two-column { width: 100% !important; } To your css, outside of the @media tag. I suggest doing it on the bottom of your css file to be sure nothing overwrites it.
Add #two-column { width: 100% !important; } To your css, outside of the @media tag. I suggest doing it on the bottom of your css file to be sure nothing overwrites it.
Go in your style.css line 18 and delete the “color” attribute for #navigation .sf-menu > li.sfHover > a and the one for #navigation .sf-menu > li > a:hover. Alternatively, you can set it for color: white
HTML entered into the Visual editor will not be rendered as HTML. Use the Text editor for HTML.
This is common problem when themes let you add some “free style” css as part of its options, try to look for such an option. In general never use this kinds of options if you can create a child theme and directly modify its css.
Found the problem, it was caused by a plugin called “Supercacher”, which must have been caching my css files. I purged the cache and it works now.
I asked a more general (non-WordPress specific) question about polyfilling on StackOverflow (I strongly recommend reading through the ensuing comments for context) which has lead me to the following answer: add_action( ‘login_enqueue_scripts’, ‘wpse_215432_oldbrowsersupport’); function wpse_215432_oldbrowsersupport() { wp_register_script( ‘ie_html5shiv’, get_stylesheet_directory_uri().’/js/html5shiv.min.js’, __FILE__, false, ‘3.7.3’ ); wp_enqueue_script( ‘ie_html5shiv’); wp_script_add_data( ‘ie_html5shiv’, ‘conditional’, ‘lt IE 9’ ); //Note: Placeholder script … Read more
Maybe if you take a look at class=”carousel-inner skrollable skrollable-between” and use some js to do it as position:absolute and top:0px
I’m guessing you weren’t using the compiled version. That’s not normal css in the example you provided, it’s scss. SCSS is a type of file for SASS, a program that assembles CSS. SASS adds lots of additional functionality to CSS ( variables, nesting, ect ) which makes writing CSS faster. If you’re new to all … Read more
It may be possible that your theme author would be able to provide you with a previous version of the theme, not sure though. In regards to how you can avoid this issue in the future, I would recommend performing a backup of your WordPress files before updating anything (this goes for plugin updates, WordPress … Read more
You need to give that element a right value. I think maybe your still expecting the float left to align it. But once you position an element absolute, the element is taken out of the flow of normal elements. right: 0;