This is a discussion on "Content before header" within the Web Page Design section. This forum, and the thread "Content before header are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
Content before header
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
Content before header
Hi,
Im new to CSS but I'd like to create a page where the search engines see my page content before the header, but the person viewing the page will see the header above the page content. When I say header I don't mean my meta tags info, I mean my logo and menu that are in the cell above my content and left column. I have sorted one problem I had with my left column displayed to the search engine before the main content by adding a 0 Height cell to the top of the left column so the first cell with any content in that the search engine comes to is my main content. Id like to do something with my header and I'm led to believe that CSS is the way to go. Can anyone give me some pointers to how to set it up? Any help would be much appreciated. Last edited by fredski; Nov 10th, 2005 at 09:04. |
|
|
|
|||
|
Re: Content before header
CSS is what you need. You can put the logo/navigation section after your content section in the HTML code if you specify it's location with CSS.
For example: Here's an example of the CSS you could use: #logonav { position: absolute; top: 10px; } #content { position: absolute; top: 150px; } Then you'd place your HTML like this <body> <div id="content">blahblahblahblahblahblahblahcontentco ntentcontent</div> <div id="logonav">this is my logo / navigation section</div> </body> Why do you need it to be like this? -Nate M |
![]() |
| Tags |
| content, before, header |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Need Help with my header | bear31 | Starting Out | 8 | Jun 10th, 2008 12:28 |
| Expandable Content Script (Swtich Content) | Matc | JavaScript Forum | 0 | Apr 8th, 2008 10:53 |
| Content Placement + Content Dividing | josephman1988 | Website Planning | 2 | Jan 22nd, 2008 05:02 |
| Layering content on content in CSS? | wickedmoon | Web Page Design | 1 | Sep 10th, 2007 15:23 |