Hi amartorana, if you want to integrate an image slider to imbalance theme you should follow these simple steps:
1.- Download/Install Easing Slider Plugin. http://wordpress.org/extend/plugins/easing-slider/
2.- Activate and Configure the Plugin. In Easing Slider Settings you should define the 5 different images you want to use. I used Custom Images, just upload and insert path in image fields.
3.- Once you have your Slider configured, you will need to modify the theme depending on what you want to achieve. If you want to have your Slider displayed between your Logo/Menu and Posts you will need to edit Appearance/Themes/Editor/Main Index Template (index.php). Add this code under <?php get_header(); ?> tag:
Code:
<div align="center">
<?php if (function_exists('easing_slider')){ easing_slider(); }; ?>
</div>
<?php if (function_exists('easing_slider')){ easing_slider(); }; ?>
This line is used to embed the slider in your Theme.
The <div></div> is an HTML tag used to define a division or section inside your HTML document. This is very important since you have to specify where the embedded slider's division will start and end. If you just use the embed line without div tag you will see that the grid that holds your posts will be broken.
The align="center" Centers the content of the division.
You can further customize the way your Slider is displayed by configuring its settings(EasingSlider) or by using CSS Style.
Example:
HTML
Code:
<div id="slider">
<?php if (function_exists('easing_slider')){ easing_slider(); }; ?>
</div>
CSS
Code:
#slider {
align:center;
}
Once you have made these changes to your files, update them and preview your site.
If you have any questions don't hesitate to comment below.
;)