Skip to:
Content
Pages
Categories
Search
Top
Bottom

Help…. I am pulling my hair out!!!!!!!!!


  • dannyfleetwood
    Participant

    @dannyfleetwood

    I am currently using the PowerMag theme, with buddypress plugin. Please see the 2 links below where you will see my problem. I have a space above the “Community > Members Directory” where as on the Profile page, the space isn’t there. I know it is only a small thing, but ruins the overall look I feel. If anyone can help me, it would be greatly appreciated. I have searched all the templates and CSS files within the plugin folder but I just can’t seem to find a solution 🙁

    http://i39.tinypic.com/2dltdmr.png
    http://i39.tinypic.com/14bq6x3.png

Viewing 3 replies - 1 through 3 (of 3 total)

  • BuddyBoss
    Participant

    @buddyboss

    Can you post the URL? It would make it a lot easier as then we could inspect the CSS and give you the solution.


    dannyfleetwood
    Participant

    @dannyfleetwood

    Hi.

    Website is currently still being made. The URL is http://www.englishfootytips.co.uk

    Thanks 🙂


    BuddyBoss
    Participant

    @buddyboss

    Thanks. I am assuming you are referring to the space here:

    https://www.evernote.com/shard/s200/sh/a3ea0b2c-1df2-4c7e-9153-dd8fe3c82e13/78de3a53c337fd1ddf6b2c6d1ece4b9d/deep/0/Members-Directory–.png

    That space is coming from this CSS defined in /wp-content/themes/PowerMag/css/less.css

    h1, h2, h3, h4, h5, h6 {
    margin: 10px 0;
    font-family: inherit;
    font-weight: normal;
    line-height: 20px;
    color: inherit;
    text-rendering: optimizelegibility;
    font-family: ‘BebasNeueRegular’, sans-serif;
    }

    You would want to remove that margin at the top. Not sure what your CSS level is so forgive me if I’m telling you what you already know. When you see 2 parameters in a row like that (margin section) the first parameter is top/bottom, and the second parameter is right/left. So this is applying a margin of 10px to the top and bottom of your headings, and 0 pixels to the right/left. You would want the top margin to be 0 and that will fix the issue. But don’t override this here or it will trickle down into all of your site headings. Isolate this box.

    This should work:

    .boxed-title {
    margin-top: 0;
    }

    .boxed-title is a class added to that specific h1.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help…. I am pulling my hair out!!!!!!!!!’ is closed to new replies.
Skip to toolbar