• Hello,

    I know there is a Neuro Pro version available, but can someone give me some code to stop the footer sticking, and to amend the huge gaps between content and footer, and also the gaps between header, page content etc?? Its a nice theme as is, and I have dressed it up well, just needs those gaps tightening up. any ideas?

    http://www.structurehire.co.uk

    Cheers

Viewing 6 replies - 1 through 6 (of 6 total)
  • You could close the gap some by removing the bottom padding on your wrapper class and by removing the fixed height from your footer class.

    Thread Starter JJField

    (@jjfield)

    Hello, Thanks for your response. Sorry, where is the wrapper class and the footer class? I am quite wordpress educated, but coding etc isnt my strong point. Maybe if you could show me what files these are and the area of text to change I could do it?

    Any help appreciated. Thanks again

    Sure. First make sure you are using a child theme or a plugin to add custom CSS. Also get the Firebug addon for Firefox. It will help you find this code easily.

    In your child themes style.css look for this line:

    .wrap {
      background: none repeat scroll 0 0 #FFFFFF;
      padding: 30px;
    }

    That is adding 30px padding to all sides of your content wrapper. Let’s remove the bottom padding:

    .wrap {
      background: none repeat scroll 0 0 #FFFFFF;
      padding: 30px 30px 0 30px;
    }

    http://codex.wordpress.org/Child_Themes

    There are other custom CSS plugins available, this is the one I use:
    http://wordpress.org/extend/plugins/live-css-preview/

    For more on CSS:

    http://www.w3schools.com/css/

    Thread Starter JJField

    (@jjfield)

    Hi, Thanks for your help. I downloaded a child theme CSS plugin, but this does not show any of the code you have given me? I also have web tools, and can veiw source code, but again, cant find it? IS there anychance you could email me; [ redacted ], and maybe I can give you my login details to view?

    Cheers

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    This level of support is not within the scope of support provided by WordPress forums.

    For CSS-specific queries, consider CSS-specific forums.

    maybe I can give you my login details

    It’s really not worth compromising your website over aesthetics.

    Andrew is correct. These forums are not intended to teach CSS. I was hoping to give you just enough to get started since your case is pretty straightforward. I believe your confusion comes from misunderstanding how the WordPress theme system works. For more information look here:

    http://codex.wordpress.org/Theme_Development

    It’s probably best in your case to just use a child theme and edit your child theme style.css file.

    Make use of the links that Andrew and I have posted and you should have no problem getting started.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Neuro Theme – Gaps between items.’ is closed to new replies.