Alternative for "BOLD" text - ?

Discussion in 'CSS' started by darkcrunk, Apr 29, 2007.

  1. #1
    When doing SEO for clients, its very difficult to BOLD the keywords while making it look good.

    Is there any way this could be solved ?


    Can all the text in that paragraph APPEAR to be BOLD to the USER - using CSS. But the SEARCH ENGINE would only find the KEYWORDS to be bold .. ?

    It would be really nice if you could show me how to implement it on the page.

    THanks in advance
     
    darkcrunk, Apr 29, 2007 IP
  2. Luuk

    Luuk Peon

    Messages:
    141
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You can make the keywords cursive, thats has the same effect for SEO as make it bold :)
     
    Luuk, Apr 29, 2007 IP
  3. canvalley

    canvalley Peon

    Messages:
    58
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Don't try to deceive the search engines as you are only going to hurt your SEO efforts.
     
    canvalley, Apr 29, 2007 IP
  4. legend2

    legend2 Well-Known Member

    Messages:
    1,537
    Likes Received:
    74
    Best Answers:
    0
    Trophy Points:
    115
    #4
    you can emphasis yet keep the bolding normal.

    b {
    font-weight: normal;
    }
     
    legend2, Apr 29, 2007 IP
  5. AndrewR

    AndrewR Peon

    Messages:
    108
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I would keep with the bold, and don't hide it, as your site could be reported to Google for trickery. :) You COULD do what legend2 posted, however it's not recommended (also, use strong instead of b).
     
    AndrewR, Apr 29, 2007 IP
  6. Mr Blonde

    Mr Blonde Guest

    Messages:
    142
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #6
    i have to agree with canvalley and AndrewR... if you serve up different versions for the user and search engine you can get penalized.

    Also like AndrewR also mentioned, use <strong> instead of <b>. <b> is only for aesthetic purposes and wont put any additional strength to the keyword. it's also deprecated so if you want to bold something without giving it emphasis use css instead
     
    Mr Blonde, Apr 29, 2007 IP
  7. SoKickIt

    SoKickIt Active Member

    Messages:
    305
    Likes Received:
    30
    Best Answers:
    0
    Trophy Points:
    70
    #7

    
    <p class="example">
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    Curabitur elementum, enim consequat <strong>sodales fermentum</strong>,
    leo mi consectetuer nisl, ac nonummy lacus justo ut lectus.
    </p>
    
    HTML:
    CSS:
    
    .example {
    font-weight: bold;
    }
    
    Code (markup):

    "sodales fermentum" would be your keyword.
     
    SoKickIt, Apr 30, 2007 IP
  8. bobman

    bobman Peon

    Messages:
    4
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    you could use h1 tags as your bold tag

    
    h1{
    font-size:12px;
    }
    Code (markup):
    <h1>bold text</h1>
    Code (markup):
    that would increase how the search engine views that code.
     
    bobman, Apr 30, 2007 IP
  9. darkcrunk

    darkcrunk Banned

    Messages:
    183
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #9
    THANK YOU SO MUCH GUYS : )


    I have read each and every one word of your posts and thanks a lot.

    I am limited to some stuff because my client would not allow this and that. So far, the method I would be using is

    <strong> and then defining strong.

    There are a lot of keywords in the page and adding so much bold makes the whole page looks ugly - as my superior described it.

    Thanks :)
     
    darkcrunk, May 11, 2007 IP