I'm using joomla and I have as the following html
<div id="ja-footerwrap">
<div class="moduletable">
<div id="bottom-slider">
<!--some contents-->
</div>
</div>
<div class="moduletable">
<div id="bottom-slider">
<!--some contents-->
</div>
</div>
<div class="moduletable">
<!--some contents-->
</div>
<!--and other divs with classes moduletable------>
</div>
I have to select the moduletable and have to apply display: inline-block;
only to that div which contains with an id of bottom-slider. How can I do that?