Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Someone Please Help With Media Queries

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #268341
    PeterP23
    Participant

    I have tried everything and for some reason I cant use media queries to make the h2 go below the p. If someone could please help me it would be much appreciated.

    https://codepen.io/anon/pen/aYmZNR

    #268342
    Paulie_D
    Member

    We don’t need the whole page codebase.

    Please reduce the demo to just the code to reproduce the issue.

    #268423
    JeroenR
    Participant

    Your blocks are all positioned relative, but with set top and left positions. They are relative to the body so they don’t look at the other blocks, just act on the dimensions of the body. Maybe you can take a framework as an example, or use flexbox or css grids and see how it can be done.
    See also for example what happens when you change position: relative; on your DIVs to position: static;.
    To be able to have 2 DIVs next to each other you can use several solutions which will be easier in the end, than the solution you have chosen.
    For example you can set display: inline-block; and give some width. That way DIVs will be next to each other.
    You can try something with float: left; but keep in mind that floating needs to be stopped.

    See an inline-block example here: https://codepen.io/anon/pen/GxNdym
    I have also used a media query to have the DIVs on top of each other on smaller screens (768px and smaller)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.