Forums

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

Home Forums CSS Ipad website integration issue

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

    Hi Everyone,

    I am currently developing a website for a tv-production company ,
    and i have to make it responsive for the iPad.

    So far, the css is working great on desktop, but on the ipad,
    i have some issues :

    First, the menu and the slider are cut on the right border,
    and second, there is a white margin on the right side of the videos blocs
    each video is 320px x 320px, so it should fit on 960px.

    here is the website : http://emalsaifi.com/purprodtest/

    Can someone help me please ?
    I apologize for my poor english,

    Emal

    #130834
    Anonymous
    Inactive

    What you need to do is use media queries that only targets iPads.

    iPad portrait
    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1024px)
    and (orientation : portrait)
    and (min-device-width : 768px)
    and (max-device-width : 1024px)
    and (orientation : landscape)
    {

    #130924
    arkader
    Participant

    Thank you very much Jarolin,

    it is exactly what i need ! :)

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