Content before header

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.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Nov 10th, 2005, 08:40
New Member
Join Date: Jun 2005
Location: Oldham, UK
Age: 38
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Reply With Quote

  #2 (permalink)  
Old Nov 10th, 2005, 19:09
New Member
Join Date: Nov 2005
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote
Reply

Tags
content, before, header

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

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


All times are GMT. The time now is 16:20.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43