• Hi,

    I am currently in the process of building a theme for my WordPress site. I am going to use WordPress as a CMS rather than a blog. My problem is that I need to have the header and footer of the website fixed, to the top and bottom respectively. How do I go about changing the stylesheet so that text does not overlap the footer, and instead a side up and down navigation bar comes up, when there is more text than can fit the page?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter lariv

    (@lariv)

    PS: I have tried to use the <textarea> tag but this will not work as I cannot incorporate images, video etc and HTML tags seem to pop up within the textarea.

    modify style sheet. use CSS to make header and footer in ‘fixed’ position

    #header, #footer{
     position:fixed;
     z-index:1000;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WordPress – fixed header and footer?’ is closed to new replies.