html - My gallery won't move to the right -


so i'm new html, using else's gallery , code, , having little trouble figuring out how works. able add top margin gallery (both using margin , margin-top commands), neither margin nor margin-left makes difference in trying move gallery right. i've pasted css , relevant code below.

css

    ul.bjqs{position:absolute; list-style:none;padding:0;margin:100;overflow:hidden; display:none;}     li.bjqs-slide{position:absolute; display:none;}     ul.bjqs-controls{list-style:none;margin:0;padding:0;z-index:9999;}     ul.bjqs-controls.v-centered li a{position:absolute;}     ul.bjqs-controls.v-centered li.bjqs-next a{right:0;}     ul.bjqs-controls.v-centered li.bjqs-prev a{left:0;}     ol.bjqs-markers{list-style: none; padding: 0; margin: 0; width:100%;}     ol.bjqs-markers.h-centered{text-align: center;}     ol.bjqs-markers li{display:inline;}     ol.bjqs-markers li a{display:inline-block;}     p.bjqs-caption{display:block;width:96%;margin:0;padding:2%;position:absolute;bottom:0;}      <div id="banner-fade" style="height: 306px; max-width: 460px; position: relative;">     <div class="bjqs-wrapper" style="width: 460px; height: 306px; overflow: hidden; position: relative;"> 

html

    <div id="banner_container">         <!--  outer wrapper presentation only, can -->      <div id="banner-fade">         <!-- start basic jquery slider -->      <ul class="bjqs"> 

first, let me example code didn't provide lot of material with. copied verbatim , still didn't see content. can't see of jquery using. using cycle plugin? in basic, though, if margins not working, may want set element's position position:absolute;, if not work, play around static;, , relative;. may want use float property, such float:middle. how position normal elements, , if gave better example code, might have helped more. try flost , position in css. :)


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -