Forums

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

Home Forums CSS [Solved] I can not remove the vertical scroll

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #25961
    dediux
    Member

    Hello everyone,
    I am confronted with a website for a client, and I just can not remove the vertical scroll.

    The site can be found at this address:

    azionecattolica.ch/giovani

    Would you give me a help to find the leak?

    #63232
    vipinbothra
    Member

    Did you mean horizontal-scroll (I guess so !).

    If you have to remove horizontal scroll add

    Code:
    overflow-x:hidden;

    to your body tag as below.

    Code:
    body {
    color:#888888;
    font-family:Arial,sans-serif;
    font-size:13px;
    line-height:25px;
    min-width:960px;
    [color=#8080BF]overflow-x:hidden;[/color]
    }

    And if you really meant vertical scroll use overflow-y instead of overflow-x.

    -VIPin

    #63299
    dediux
    Member

    Thank you, I learned something new =)
    Congratulations for the forum and thanks again for your reply.

    Greetings from Switzerland

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