Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

SEO Tycoon


You are currently viewing our SEO Tycoon as a guest. Please register to participate.
Login



Freelance Jobs

Reply
CSS & Proper SEO Links?
Old 03-28-2007, 04:34 PM CSS & Proper SEO Links?
bzimage's Avatar
King Talker

Posts: 1,072
Name: Shannon
Location: http://www.bzimage.org
Trades: 1
CSS & Proper SEO Links?

Hi all, I have several sites, I will not mention the links here but I am using CSS to make advanced roll over menus. I was just wondering if in SEO terms that will affect the anchor text?

I have one PR 6 site which has this and yet the links don't get indexed in Google, I have many PR4s and they do not have CSS menus and they do... Is this a common SEO mistake?

Any help or guidance in this area would be appreciated

I wanted to see before I just changed em.
bzimage is offline
Reply With Quote
View Public Profile Visit bzimage's homepage!
 
 
Register now for full access!
Old 03-28-2007, 05:09 PM Re: CSS & Proper SEO Links?
Learning Newbie's Avatar
Defies a Status

Latest Blog Post:
Astounding Republican Paranoia
Posts: 5,662
Name: John Alexander
Trades: 0
I think something else is the cause. Search engines have been aware of CSS for quite some time now, even read it well enough to detect hidden text ( same fore/back color ) done with CSS. So I'm certain applying a class to a hyperlink tag won't make the engine unable to parse that link.

Unless the tag is malformed and chokes the robot, but it seems you understand html well enough to not do that? I also think if that were the case most browsers wouldn't display your site properly.
Learning Newbie is offline
Reply With Quote
View Public Profile
 
Old 03-28-2007, 05:11 PM Re: CSS & Proper SEO Links?
bzimage's Avatar
King Talker

Posts: 1,072
Name: Shannon
Location: http://www.bzimage.org
Trades: 1
Site displays fine, and I never had a problem like this before. But as a PR6 I figured it would be indexing...
bzimage is offline
Reply With Quote
View Public Profile Visit bzimage's homepage!
 
Old 03-28-2007, 05:31 PM Re: CSS & Proper SEO Links?
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
It definitely won't be CSS that is an issue. CSS is purely a means of styling, it cannot affect the textual content of the anchors.

As usual though ignore PR as a means of measuring anything, as you can see, it has already suggested you look down a wrong route.

How do you know the links are not indexed?
How old is the site?
Are there any good links pointing to the site or just link exchange and free directory ones ?
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?

Last edited by chrishirst; 03-29-2007 at 04:16 AM.. Reason: speelnig erorr corekted
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-28-2007, 05:48 PM Re: CSS & Proper SEO Links?
bzimage's Avatar
King Talker

Posts: 1,072
Name: Shannon
Location: http://www.bzimage.org
Trades: 1
Well, I haven't owned the domain that long, it was a 4 when I got it and I linked to it quite a bit.

The links are in a bullet list and the bullet list is what is styled with CSS.
bzimage is offline
Reply With Quote
View Public Profile Visit bzimage's homepage!
 
Old 03-29-2007, 04:22 AM Re: CSS & Proper SEO Links?
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Quote:
Well, I haven't owned the domain that long
Now this is the interesting bit, because I am not even remotely interested in what the PR is or what it was. BUT there is the school of thought that Google will "turn the clock back" when a hostname changes hands. This is NOT saying that this is the case here, just simply it is another point to consider.

To add to my questions;

Have you redesigned the site?
Have the URIs changed?
Does it use any rewriting techniques?
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-29-2007, 09:18 AM Re: CSS & Proper SEO Links?
bzimage's Avatar
King Talker

Posts: 1,072
Name: Shannon
Location: http://www.bzimage.org
Trades: 1
I changed servers recently, I know that does have some affect. But I wish I knew how much
bzimage is offline
Reply With Quote
View Public Profile Visit bzimage's homepage!
 
Old 03-29-2007, 12:14 PM Re: CSS & Proper SEO Links?
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Quote:
But I wish I knew how much
None.

changing servers will have absolutely no effect whatsoever on crawling or ranking.

If it goes wrong and the site goes offline for two or three days, that may cause a glitch.

do we get some answers or is it still a guessing game ?
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-29-2007, 12:34 PM Re: CSS & Proper SEO Links?
bzimage's Avatar
King Talker

Posts: 1,072
Name: Shannon
Location: http://www.bzimage.org
Trades: 1
No to all of your questions only thing that happened was a changed server.
bzimage is offline
Reply With Quote
View Public Profile Visit bzimage's homepage!
 
Old 04-02-2007, 11:03 AM Re: CSS & Proper SEO Links?
willcode4beer's Avatar
Super Moderator

Posts: 1,533
Name: Paul Davis
Location: San Francisco
Trades: 1
Quote:
Originally Posted by chrishirst View Post
It definitely won't be CSS that is an issue. CSS is purely a means of styling, it cannot affect the textual content of the anchors.
Actually, with CSS2 we get the content property so, you can. However, like most standards its ignored by IE.
For example:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3c.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Style Content</title>
<style type="text/css">
a {
        content: "boo";
}
a:before {
    content: "foo ";
}
a:after {
    content: " baz";
}
</style>
</head>
<body>
<a href="http://google.com">bar</a>
</body>
</html>
will render
"foo boo baz" in Opera
"foo bar baz" in Firefox
"bar" in IE6 (I haven't tried 7)
Based on their relative compliance to the CSS2 spec.

When you add in the ability to hide text, set size and background images, you could fill in the gaps. So, CSS really does have the ability to change content now.
Of course, its mostly evil to do so
__________________

Please login or register to view this content. Registration is FREE

willcode4beer is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to CSS & Proper SEO Links?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.16328 seconds with 12 queries