-3

my bootstrap column for big screen is like :-

![i like this type column][for big screen]

Image 1: ![i like this type column][need reputation to post image]

and I want to this type of image for mobile screen.

![see the image][please solve this query.]

Image 2: ![see the image][I am new member.]

amphetamachine
  • 27,620
  • 12
  • 60
  • 72
Ss_Gupta
  • 73
  • 7
  • Please add relative html markup. The question is not clear since images are not displayed in question – RahulB Jan 16 '15 at 09:02
  • brother. .. i attached image but not post and error with display ("You Need at least 10 reputation to post image.") . :( – Ss_Gupta Jan 16 '15 at 09:12

1 Answers1

0

I have gotten into a habit of not using the push and pull features and just use a column but leave the content of that column empty.

From what I can tell, you are trying to do this.

<div class="container">
    <!-- ALL SCREENS WILL SEE THIS (ACCEPT MOBILE)-->
    <div class="row hidden-xs">
        <div class="col-md-4">
        </div>
        <div class="col-md-4">
            <img src="img/image.jpg">
        </div>
        <div class="col-md-4">
        </div>
    </div>
    <!-- MOBILE SCREENS WILL SHOW THIS -->
    <div class="row visible-xs">
        <div class="col-md-4">
        </div>
        <div class="col-md-4">
            <img src="img/image.jpg">
        </div>
        <div class="col-md-4">
        </div>
    </div>
</div>

Edit the rows as necessary.

Brad Fletcher
  • 3,547
  • 3
  • 27
  • 42
  • thanks. for reply. check my Query : http://stackoverflow.com/questions/27981978/i-create-column-in-bootstrap-with-push-and-pull-but-no-working – Ss_Gupta Jan 16 '15 at 10:34