Instead of Custom CSS Theme CSS is loading

It is not clear if you want to just override the styles or replace the file with a new one. Whatever the case is, below code will help. Just wait for the best answer to your question. add_action( ‘wp_enqueue_scripts’, ‘add_my_style_css_also’, 99 ); function add_my_style_css_also() { wp_enqueue_style( ‘my-styles-css’, get_stylesheet_directory_uri() . ‘/style123.css’ ); } The code will … Read more

Add Javascript/Html into a WordPress

This plugin allows custom JS and custom CSS on a per post/page basis. https://wordpress.org/plugins/art-direction/ If you find that it is not compatible with your WP install, look for other plugins that allow custom JS and CSS. If you’re looking for a more robust solution, you can do something like the following: /* overlay-contact-form.css */ #overlayContactForm … Read more

How to make this splash page responsive

as I understood you have two parts header, one for register one for logo, in bootstrap 3 : <div class=”row”> <div class=”col-md-6 col-xs-12″>logo here</div> <div class=”col-md-6 col-xs-12″>Register here here</div> </div> It will make your header responsive. and if you want that your image be responsive you can do like this in bootstrap 3: <img src=”https://wordpress.stackexchange.com/questions/210782/…” … Read more

Run Custom HTML5

I don’t know anything about reveal.js other than what I just googled, but you can copy/paste a page.php from your theme and name it page-{slug}.php for a specific page then add any code you want into the content area of the page. Assuming your theme doesn’t break this format in any way. Instructions on making … Read more

How can i get tag without />?

Capture all the wp_head content add_action( ‘wp_head’, function(){ ob_start(); }, 0); Replace endings and output results add_action( ‘wp_head’, function(){ $head = ob_get_clean(); echo str_replace(‘/>’, ‘>’, $head); }, 99999);

How to Convert Shortcode into a link?

Wrap your shortcode in a div and give it an ID that you can use as a target when triggering your popup. For example, you can put the shortcode somewhere on your page (content, sidebar, etc) as follows: <div id=”popup” class=”lightbox”>[contact-form-7 id=”1735″ title=”Contact form 1″]</div> and the link that trigges the popup will look something … Read more