• Afternoon!

    How do I significantly lessen the space below the content boxes, above the text for “about us”? I would like to mirror the distance between the content boxes and the bootstrap slider somehow.

    The title was there previously and I removed it using the following:

    .entry-title, .entry-title a {
    display: none;
    }

    …unfortunately now there is an awkward gap in there.

    https://www.aspect.gs/main/

    Thanks, any help is greatly appreciated!

Viewing 4 replies - 1 through 4 (of 4 total)
  • To clarify, are you referring to the section with the boxes labeled “Photography”, “Marketing”, and “Consulting”? If so, try this custom CSS:

    body.home .content {
      padding-top: 10px;
    }
    Thread Starter kdma

    (@kdma)

    Thanks for the response Stephen, I’m actually referring to the space just below that but thanks for that bit as well because now I can normalize the distance between the two which I know at some point was going to bother me. ??

    Okay, try this code:

    .home-content-boxes {
    	margin: 0;
    }

    And then if it’s still not enough:

    #primary {
    	margin-top: -15px;
    }
    Thread Starter kdma

    (@kdma)

    Hmmmm…. ok so yes, that did appear to work but now I believe I actually need to edit page itself because the margin is gone but it’s holding the space for the “Edit” button and also where I imagine the title would go.

    With that said, I don’t actually mind the spacing and now with the other piece you gave me, I can mirror the gap and balance out the spacing.

    This will work perfectly. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove the Space?’ is closed to new replies.