Page 1 of 2 1 2 LastLast
Results 1 to 15 of 19

Most effective on-site-optimization

This is a discussion on Most effective on-site-optimization within the General Discussion forums, part of the vBulletin SEO Discussion category; After having great success with vbseo and after doing my own work in on-site-optimization, I was wondering, what you are ...

  1. #1
    Senior Member
    Real Name
    Admin
    Join Date
    Nov 2006
    Posts
    247
    Liked
    0 times

    Most effective on-site-optimization

    After having great success with vbseo and after doing my own work in on-site-optimization, I was wondering, what you are doing ... despite vbseo.

    Which of your actions in on-site-optimization showed the best results?

    Thanks a lot!
    Marcel

  2. #2
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    H1 tags on the thread title is probably the next best thing.

  3. #3
    Senior Member
    Real Name
    Admin
    Join Date
    Nov 2006
    Posts
    247
    Liked
    0 times
    Thanks! And how is this done?

  4. #4
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    i use the following in the navbar....

    Code:
    <if condition="$show['forumdesc']">
            <h1 class="descr">$navbits[lastelement]</h1>          
        <else />
            <if condition="(THIS_SCRIPT == 'tags')">
                <h1 class="descr">Thread Tags</h1>
            <else />
    <if condition="(THIS_SCRIPT == 'blog') OR (THIS_SCRIPT == 'blog_post') OR (THIS_SCRIPT == 'blog_search') OR (THIS_SCRIPT == 'blog_ucp')">
                <h1 class="descr">MY.com Blogs</h1>
    <else />
                <h1 class="descr">My.com Forums</h1>
    </if>
            </if>
        </if>

  5. #5
    Senior Member
    Real Name
    Admin
    Join Date
    Nov 2006
    Posts
    247
    Liked
    0 times
    I've got this here in the navbar

    Code:
    <if condition="$show['forumdesc']">
     <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
     <tr>
      <td class="alt1" width="100%"><strong>$foruminfo[title]</strong> <span class="smallfont">$foruminfo[description]
    </span></td>
     </tr>
     </table>
     
    </if>
    Can you help me again?
    How to change that code to get correct for your h1-change?

    Second question:
    Do you user that one on other places like showthread too?

    Thanks a lot!

  6. #6
    Senior Member
    Real Name
    Admin
    Join Date
    Nov 2006
    Posts
    247
    Liked
    0 times
    Sorry that I have to ask for help on that detailed level
    I'm not coding that much ...

  7. #7
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    i replaced what you posted with what i posted.

    you can do with it what you want.

    the main thing is using the right conditions for the right pages

  8. #8
    Senior Member
    Real Name
    Admin
    Join Date
    Nov 2006
    Posts
    247
    Liked
    0 times
    You did what?
    Sorry to ask. But I don't see any changes.

  9. #9
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    find the code block you posted in the nav bar.

    replace all that with what i posted.

  10. #10
    Senior Member
    Real Name
    Admin
    Join Date
    Nov 2006
    Posts
    247
    Liked
    0 times
    Hi,
    I reduced it to the following

    Code:
    <if condition="$show['forumdesc']">
     <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
     <tr>
      <td class="alt1" width="100%"><strong><h1 class="descr">$navbits[lastelement]</h1></strong> <span class="smallfont">$foruminfo[description]
    </span></td>
     </tr>
     </table>
     
    </if>
    it still works! But it's far too big.

    4 questions:

    1. If I change the h1-Format ... will it affect other things in the forum? (as far as you can now)
    2. Where exactly do I change the h1-format? When I look into the design, I don't see anything. Can you give me a detail?
    3. I've got a custom design. If it is in the custom-design-part at the end of the design-configuration ... under which code would I find it?
    4. Is it a good idea to make it smaller or will google see that I use a h1 for a small title and rate it bad?

    Thanks a lot!

  11. #11
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    I used a class on the H1, descr

    you can add

    .descr { style rules here }
    to the bottom block of the MainCss editor in vb CP

    size doesn't matter for weight, its the tag it self.

  12. #12
    Senior Member
    Real Name
    Admin
    Join Date
    Nov 2006
    Posts
    247
    Liked
    0 times
    I added h2 too now (for the forum-name).

    Other question:
    Do you use that on forumhome and/or forumdisplay too?

    Thanks!

  13. #13
    Member
    Real Name
    Daniel Ionica
    Join Date
    May 2007
    Posts
    33
    Liked
    0 times
    Quote Originally Posted by briansol View Post
    i use the following in the navbar....

    Code:
    <if condition="$show['forumdesc']">
            <h1 class="descr">$navbits[lastelement]</h1>          
        <else />
            <if condition="(THIS_SCRIPT == 'tags')">
                <h1 class="descr">Thread Tags</h1>
            <else />
    <if condition="(THIS_SCRIPT == 'blog') OR (THIS_SCRIPT == 'blog_post') OR (THIS_SCRIPT == 'blog_search') OR (THIS_SCRIPT == 'blog_ucp')">
                <h1 class="descr">MY.com Blogs</h1>
    <else />
                <h1 class="descr">My.com Forums</h1>
    </if>
            </if>
        </if>

    starting from this i made a mod but only for the forums.
    I'll update the mod when vbulletin 3.7 is released.
    SEO TOOL: Adding H-TAG, H1 to your forum - vBulletin.org Forum

  14. #14
    Senior Member
    Real Name
    Admin
    Join Date
    Nov 2006
    Posts
    247
    Liked
    0 times
    Why just h1 and not also h2? I read this somewhere else and added h2 too ...

  15. #15
    Member
    Real Name
    Daniel Ionica
    Join Date
    May 2007
    Posts
    33
    Liked
    0 times
    hmm....good point

    what do you think we could put in h2 ?

    in h1 i have for forums : forumh1 (that can be defined) and for showthread i have threadtitle - forumh1

Page 1 of 2 1 2 LastLast

Similar Threads

  1. On page optimization: h1-h2-h3 optimization
    By amnesia623 in forum General Discussion
    Replies: 1
    Last Post: 02-11-2008, 12:51 PM
  2. Is the google site map really effective?
    By Corey in forum General Discussion
    Replies: 5
    Last Post: 06-05-2006, 04:08 PM
  3. What's more effective?
    By Silmarillion in forum General Discussion
    Replies: 2
    Last Post: 08-08-2005, 06:48 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •