Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi there

    Thanks for posting and providing that screenshot – that’s definitely weird! I’ve never seen a form field label appear to far away from the form itself. After doing a bit of digging it definitely appears to be one particular section of the overall theme CSS for your WordPress site.

    From what I can see, the best way to resolve this would be to locate the style.css file for your current theme, locate the secton “13. Forms” and make some changes to the label CSS settings.

    Here I’ve grabbed the label section you’ll want to locate and bolded the lines of CSS in style.css file which are causing the form label to appear in the top left of the page:

    label {
    position: absolute;
    top: 7px !important;
    left: 15px !important;

    color: #aaa;
    font-weight: normal;
    }

    Removing those lines in your theme’s css should resolve the issue you’re seeing!

    Let me know if there’s anything else I can assist with.

    -Kath

    Thread Starter marchioa

    (@marchioa)

    That worked perfectly and didn’t seem to break anything else. As far as I know (I inherited this site) it is the stock Advocate v1.3 theme.

    Thanks!

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

The topic ‘Form labels not displayed properly’ is closed to new replies.