Making Blog-Title Static
-
I’ve changed the appearance of the blog-page to show the blog-title, using the following code added to index.php:
<header class="entry-header"> <h1 class="entry-title">Postcards from Outer-Space</h1> </header
Is it possible for the blog-title to remain visible /static as you scroll-down the page?
– The Site-title behaves this way. This is all the css i’ve used for that:
/* CENTER SITE-TITLE */ .site-branding { width: 100%; text-align: center; } /* TITLE VISIBLE on SCROLL and White-Space Manipulation*/ .site-header { position: fixed; top: 0; opacity: 1; z-index: 1; background-color: #FFFDFD; padding-bottom: 5px; } .site-branding { margin-top: 10px; } .entry-header { padding-top: 10px; }
I appreciate this might be a bit tricky… it would be good to know why it can’t be done, if this is the case, to help my overall understanding.
With thanks.
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Making Blog-Title Static’ is closed to new replies.