How to text up in front page 10

Homepage Community Forums Aspire Theme Support How to text up in front page 10

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #21600
    jamesc8913
    Customer

      Hi Wes, How can I move the text up on front page 10. Please see attached picture. Thanks!
      Page 10

      #21607
      Eric
      Customer

        You’re using the .fp-left class in your div which adds margin to the top. You would have to remove that class or reduce the margin to move the text back up.

        .fp-left {
        	float: left;
        	display: inline-block;
        	margin-top: 100px;
        	padding: 0;
        	position: relative;
        	text-align: left;
        	width: 49%;
        	vertical-align: top;
        }
        

        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

        #21608
        jamesc8913
        Customer

          Thank you Wes. What about the bottom margin? Can’t seem to find it…

          #21612
          Eric
          Customer

            I’m Eric 🙂 ….or did you mean to reply to a different thread that @Wes was on?

            There isn’t any extra margin at the bottom of your text other than what comes with paragraph tags. The bottom margin that is coded for p tags affects everywhere throughout your entire site. I’d leave that as it is unless you really need to reduce more space.

            p {
                margin: 0 0 30px;
                padding: 0;
            }

            You are talking about the space underneath the button right? If you are, then that space is your p tag above which is usually found after the body code at the top of the style.css


            I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

            #21616
            jamesc8913
            Customer

              Thank you Eric!

            Viewing 5 posts - 1 through 5 (of 5 total)
            • The topic ‘How to text up in front page 10’ is closed to new replies.