It mostly comes in 3 parts. CSS, HTML and JavaScript. Say we are using Vantage theme. Where should we put these to get a some CSS effects ? Thanks.
Hi Veer, To add CSS in Wordpress there are different ways: 1. in header.php (manually add it before the <?php wp_head(); ?>) 2. by wp_enqueue_style (http://codex.wordpress.org/Function_Reference/wp_enqueue_style) To add JS in Wordpress... : 1. in header.php or footer.php defends on your theme setup. 2. wp enqueue script (http://codex.wordpress.org/Function_Reference/wp_enqueue_script) I hope this help or gives you idea at least. Thanks and God bless always!