Welcome to Geeklog, Anonymous Sunday, December 22 2024 @ 01:09 am EST
Geeklog Forums
do i really need articles as hyperlinks?
Page navigation
angelica
Anonymous
if i have a siteindex.php & i upload my sitemap to google -
do i really need to have my article titles as hyperlinks?????
i am using the clean theme..
this is my last question - honest!
do i really need to have my article titles as hyperlinks?????
i am using the clean theme..
this is my last question - honest!
33
32
Quote
Status: offline
beewee
Forum User
Full Member
Registered: 08/05/03
Posts: 969
Location:The Netherlands, where else?
Well, if you want as much visitors as possible, yes, it's better to link the story titles.
There are lot's of threads about SEO, but to keep it short: search engines look in GL from header, left column, center column, right column to footer, and think that the content in the hyperlinks, header tags (H1, H2 etc), list items and bold/italic tags are the most important content.
So it would even be better to put a link to the story titles and also give them a H* tag. You can adjust your CSS to adjust the appearance of the story titles.
Ask whatever you want, but please do some forum searching first...
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
There are lot's of threads about SEO, but to keep it short: search engines look in GL from header, left column, center column, right column to footer, and think that the content in the hyperlinks, header tags (H1, H2 etc), list items and bold/italic tags are the most important content.
So it would even be better to put a link to the story titles and also give them a H* tag. You can adjust your CSS to adjust the appearance of the story titles.
Quote by angelica:this is my last question - honest!
Ask whatever you want, but please do some forum searching first...
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
27
30
Quote
angelica
Anonymous
i do search alot of the forum b4 i ask for help.
the reason i asked is because Dirk has been trying to help me fix the CSS problem with the "CLEAN" theme.
when i turn the articles into links & do the css fix (that non-ul thing),
it doesn't work.
i tried changing SPAN to A but still nothing...
i wish someone would find a fix or something for this & post it...
the reason i asked is because Dirk has been trying to help me fix the CSS problem with the "CLEAN" theme.
when i turn the articles into links & do the css fix (that non-ul thing),
it doesn't work.
i tried changing SPAN to A but still nothing...
i wish someone would find a fix or something for this & post it...
29
28
Quote
Status: offline
drshakagee
Forum User
Full Member
Registered: 10/01/03
Posts: 231
Assuming you are using a non modified version of the clean theme you can add this:
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif;
}
a:hover.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
to your style sheet, and make sure you have:
for your story titles in your various story template files.
Yes I am mental.
Text Formatted Code
a.articleTitle {color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif;
}
a:hover.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
to your style sheet, and make sure you have:
Text Formatted Code
<span class="articleTitle"><a href="{article_url}" class="articleTitle">{story_title}</a></span>Yes I am mental.
22
27
Quote
angelica
Anonymous
I added this to my style.css
.nodecoration:link, a.nodecoration:visited, a.nodecoration:hover, a.nodecoration:active {
background: transparent;
color: #000000;
text-decoration: none; }
& I changed this is my featuredstorytext.thtml
<td align="left"><h1><span class="articleTitle"><a href="{article_url}" title="{story_title}" class="nodecoration">{story_title}</a></span><h1></td>
so now the text does not look like a hyperlink anymore
BUT
the h1 or h2 tags don't work....
helpeth
Text Formatted Code
.nodecoration:link, a.nodecoration:visited, a.nodecoration:hover, a.nodecoration:active {
background: transparent;
color: #000000;
text-decoration: none; }
& I changed this is my featuredstorytext.thtml
Text Formatted Code
<td align="left"><h1><span class="articleTitle"><a href="{article_url}" title="{story_title}" class="nodecoration">{story_title}</a></span><h1></td>
so now the text does not look like a hyperlink anymore
BUT
the h1 or h2 tags don't work....
helpeth
23
22
Quote
Status: offline
drshakagee
Forum User
Full Member
Registered: 10/01/03
Posts: 231
In your featuredstorytext.thtml example you forgot to close your h1 tag. Does that fix it for you? If not what do you want the h1 tags to do?
Yes I am mental.
Yes I am mental.
28
24
Quote
angelica
Anonymous
thanks dr
i posted that last message b4 i read your post.
i tried your post & it almost works now!!!
it works when i hover over the article title but not before that..
i will play around with it & thanks alot!!!!!
getting closer
i posted that last message b4 i read your post.
i tried your post & it almost works now!!!
it works when i hover over the article title but not before that..
i will play around with it & thanks alot!!!!!
getting closer
25
27
Quote
angelica
Anonymous
THANKS DRSHAKAGEE!!!!!
i added this to your post:
a.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
a:hover.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
a:visited.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
a:link.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
& now it works!!
thank you so very much.
hopefully your post will help others' later on..
muchos gracias
i added this to your post:
Text Formatted Code
a.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
a:hover.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
a:visited.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
a:link.articleTitle {
color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none;
}
& now it works!!
thank you so very much.
hopefully your post will help others' later on..
muchos gracias
32
30
Quote
Status: offline
drshakagee
Forum User
Full Member
Registered: 10/01/03
Posts: 231
Glad it worked out. If you want to clean up the code a bit you can try changing your style sheet to have this instead:
It is a bit cleaner.
Change your story template files to have this:
Google really likes the h1 tags for story titles which I think you realized. I couldn't see that the old span tag did anything anymore so might as well take it off.
Yes I am mental.
Text Formatted Code
a.articleTitle, a:hover.articleTitle, a:visited.articleTitle, a:link.articleTitle, h1.articleTitle { color: #000000; font-weight: bold; font-size: 14px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration:none; margin:2px; padding:0; }It is a bit cleaner.
Change your story template files to have this:
Text Formatted Code
<h1 class="articleTitle"><a href="{article_url}" title="{story_title}" class="articleTitle">{story_title}</a></h1>Google really likes the h1 tags for story titles which I think you realized. I couldn't see that the old span tag did anything anymore so might as well take it off.
Yes I am mental.
33
25
Quote
Status: offline
beewee
Forum User
Full Member
Registered: 08/05/03
Posts: 969
Location:The Netherlands, where else?
Using H1 tags always gives me a problem with Internet Explorer, I always get too much whitespace below the line with the H1 (or H2/H3) tags.
Any suggestions?
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
Any suggestions?
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
27
29
Quote
Status: offline
beewee
Forum User
Full Member
Registered: 08/05/03
Posts: 969
Location:The Netherlands, where else?
yes, believe I found a solution:
h1.classname {
margin-bottom: 0px;
}
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
h1.classname {
margin-bottom: 0px;
}
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
33
30
Quote
Status: offline
drshakagee
Forum User
Full Member
Registered: 10/01/03
Posts: 231
Quote by Dirk: I'd prefer
bye, Dirk
display: inline;
bye, Dirk
Hey that's handy, thanks for the tip!
Yes I am mental.
31
22
Quote
Status: offline
beewee
Forum User
Full Member
Registered: 08/05/03
Posts: 969
Location:The Netherlands, where else?
Yep, that's the most sophisticated option, but with Margin you can adjust the whitespace exactly the way you like it..
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
24
25
Quote
Status: offline
beewee
Forum User
Full Member
Registered: 08/05/03
Posts: 969
Location:The Netherlands, where else?
Ah, now I see it, the first small title has the class articleTtile and the H1 tags, does that help you out?
Hint: use Firefox and the developer toolbar extension, that can show you all the information you need.
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
Hint: use Firefox and the developer toolbar extension, that can show you all the information you need.
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
23
30
Quote
Status: offline
beewee
Forum User
Full Member
Registered: 08/05/03
Posts: 969
Location:The Netherlands, where else?
Looks OK now, but please do add a few px padding on the left of your story title, it is too close to the topic icon.
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
Dutch Geeklog sites about camping/hiking:
www.kampeerzaken.nl | www.campersite.nl | www.caravans.nl | www.caravans.net
29
32
Quote
Page navigation
All times are EST. The time is now 01:09 am.
- Normal Topic
- Sticky Topic
- Locked Topic
- New Post
- Sticky Topic W/ New Post
- Locked Topic W/ New Post
- View Anonymous Posts
- Able to post
- Filtered HTML Allowed
- Censored Content