Slider Wide white space problem…again

Homepage Community Forums Epik Theme Support Slider Wide white space problem…again

  • This topic has 3 replies, 2 voices, and was last updated 10 years ago by Wes.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #12335
    yoldayim
    Customer

      Wes,

      I posted before, but now the forum won’t let me continue that conversation for some reason, so I was forced to start a new one.

      I had asked for help with the white space above and below the Slider Wide. I had trouble making it work with the suggestions you gave. But then suddenly it clicked and it all seemed to be working. Until now…

      Now, I have lost the space at the head of every page. Could you let me know what I did wrong?

      http://50d.36d.myftpupload.com/ is the site.

      THANKS!

      #12343
      Wes
      Moderator

        Anytime you’re unable to post in an open thread, follow one of these steps here – https://appfinite.com/topic/having-trouble-logging-in/ it’s a caching issue of some sort that seems to be common……can’t figure out why it happens, but the above link will automatically fix it.

        It looks like there is an error in your css, you’re missing the px in the code, so change this –

        .head-wrap {
        	background: #303236;
        	margin: 10 0 10px;
        }

        to this –

        .head-wrap {
        	background: #303236;
        	margin: 10px 0 10px;
        }

        There should always be a px behind every number except for 0. Although, if you want it to have as much space as the demo you’ll need to change the bottom margin to 40px instead of 10px like this –

        .head-wrap {
        	background: #303236;
        	margin: 10px 0 40px;
        }

        Also, since you added 10px for the top that will add some space right above the head wrap….you’ll see it once you add it. If you want to remove that then you can change the first 10px (top) to 0

        .head-wrap {
        	background: #303236;
        	margin: 0 0 40px;
        }
        #12347
        yoldayim
        Customer

          Thanks Wes, that fixed it!

          #12355
          Wes
          Moderator

            You’re Welcome!

          Viewing 4 posts - 1 through 4 (of 4 total)
          • The topic ‘Slider Wide white space problem…again’ is closed to new replies.