Welcome to the IMTalk - Internet Marketing & SEO Forum.
  • Login:
+ Reply to Thread
Page 2 of 2 FirstFirst 1 2
Results 21 to 36 of 36
  1. #21
    ChrisM's Avatar
    ChrisM is offline IM & SEO Whisperer ChrisM is on a distinguished road
    Join Date
    May 2011
    Posts
    39
    Thanks Given
    12
    Thanked 6 Times in 5 Posts
    A job well done seo bunny. I like the blue theme, its easy on the eyes. My humble suggestion would be to add a Buy Now button near at the top of the page since some users might be convinced at the first few paragraphs.

  2. The Following User Says Thank You to ChrisM For This Useful Post:


  3. #22
    Nemanja's Avatar
    Nemanja is offline IMTalk.org Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute
    Join Date
    Jun 2010
    Location
    www
    Posts
    4,870
    Thanks Given
    703
    Thanked 3,044 Times in 1,247 Posts
    I said that I will reward you for your efforts,
    so I have added $50 worth of credits to your account

  4. The Following User Says Thank You to Nemanja For This Useful Post:


  5. #23
    rain22's Avatar
    rain22 is offline IM & SEO Chatty rain22 has a spectacular aura about rain22 has a spectacular aura about
    Join Date
    Feb 2011
    Location
    Russia
    Posts
    1,601
    Thanks Given
    38
    Thanked 148 Times in 112 Posts
    its really great !!

  6. The Following User Says Thank You to rain22 For This Useful Post:


  7. #24
    wink0r's Avatar
    wink0r is offline Moderator wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold
    Join Date
    Oct 2010
    Location
    East Coast, USA
    Posts
    2,183
    Thanks Given
    941
    Thanked 651 Times in 491 Posts
    You would need to enclose the translation section in a div. I arbitrarily used an ID 'translate_box'. This code will work:
    Code:
    #translate_box {
      border: 10px inset #0097d5;
      padding: 1px 10px;
      width: 350px;
      margin-right: auto;
      margin-left: auto;
    }
    You could change the 'inset' to 'solid' and the width to something that suits.

  8. The Following User Says Thank You to wink0r For This Useful Post:


  9. #25
    seobunny Guest
    Quote Originally Posted by wink0r View Post
    You would need to enclose the translation section in a div. I arbitrarily used an ID 'translate_box'. This code will work:
    Code:
    #translate_box {
      border: 10px inset #0097d5;
      padding: 1px 10px;
      width: 350px;
      margin-right: auto;
      margin-left: auto;
    }
    You could change the 'inset' to 'solid' and the width to something that suits.
    Thank you so much!!!
    I see you got great CSS Skills

    Can you give me any Code to make a Border with a nice looking shadow please?

  10. #26
    wink0r's Avatar
    wink0r is offline Moderator wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold
    Join Date
    Oct 2010
    Location
    East Coast, USA
    Posts
    2,183
    Thanks Given
    941
    Thanked 651 Times in 491 Posts
    I cheat, I mainly just use a WYSIWYG editor with a good CSS editor (KompoZer). It has not yet been updated to CSS 3 standards, and that is where the drop shadows lurk. CSS 3 is still in a state of flux and browser support varies at this time, so I have not yet paid much attention to it. There are, of course, ways to accomplish the effect, but it does take some extra effort. Rounded corners would also be an nice touch, but that is also a CSS 3 thing.

    You could make an image in Photoshop of the border that you envision and use it as a background image for the containing div. If using a 10px border the width would need to be around 400px for the containing div and you may need to set a height for the div as well. You may also need to play with margins and/or padding a bit.

  11. #27
    seobunny Guest
    @ wink0r... I have added the CSS Code but there was nothing changed :/

  12. #28
    wink0r's Avatar
    wink0r is offline Moderator wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold
    Join Date
    Oct 2010
    Location
    East Coast, USA
    Posts
    2,183
    Thanks Given
    941
    Thanked 651 Times in 491 Posts
    Sorry for the delay, I was out of town for the weekend.

    The code requires a tag with the ID translate_box to function. You will need to enclose the code in a div with the ID:

    Code:
    <div id="translate_box">
    <p style="text-align: center;"><span style="font-size:18px;">PLEASE CHOOSE YOUR LANGUAGE:</span></p>
    <center>
    <div id="google_translate_element"></div><script>
    function googleTranslateElementInit() {
      new google.translate.TranslateElement({
        pageLanguage: 'de',
        layout: google.translate.TranslateElement.InlineLayout.HORIZONTAL
      }, 'google_translate_element');
    }
    </script><script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
    </div>
    That should take care of the problem (add the bits in red to your page code).

    ---------- Post added 05-30-2011 at 11:58 AM ----------

    Looking at the code you should be able to add one line to the css for translate box: text-align: center; and eliminate both the ' style="text-align: center;"' from the <p> tag and the <center> tag after that <p> tag.

    ---------- Post added 05-30-2011 at 12:00 PM ----------

    Otherwise you would probably need to add a </center> tag after the </script> tag if the page is to validate.

  13. The Following User Says Thank You to wink0r For This Useful Post:


  14. #29
    wink0r's Avatar
    wink0r is offline Moderator wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold
    Join Date
    Oct 2010
    Location
    East Coast, USA
    Posts
    2,183
    Thanks Given
    941
    Thanked 651 Times in 491 Posts
    I see the code is working. Perhaps changing the 'inset' to 'outset' would be a better effect in this situation. That will put the lighter blue above and to the left and the darker to the lower right. An alternative would be to go to a 2px solid border.

    You might also change the padding line to: 1px 10px 10px 10px; The one in red is the bottom padding, so adjust as necessary to balance the white space above and below.
    Last edited by wink0r; 06-09-2011 at 12:38 AM.

  15. #30
    seobunny Guest
    LONG TIME THE LANDING PAGE WAS NOT IN THE SERPS!!!

    FIRST I THOUGHT I GET A PENALTY OR SANDBOXED... BUT NEMANJA STILL TOLD ME THAT I MUST BE PATIENT CAUSE ITS MAYBE GOOGLE DANCE...

    TODAY MY LANDING PAGE IS IN THE SERPS AND IM HAPPY TO TELL YOU GUYS THAT IM RANKING ON THE TARGETED KEYWORD "BOOKMARK TOOL" IN THE GERMAN GOOGLE RESULTS...



    ON SITE 1
    RANK 3



    Source:
    Code:
    http://www.google.de/#sclient=psy&hl=de&source=hp&q=bookmark+tool&btnG=Google-Suche&aq=f&aqi=&aql=&oq=&pbx=1&bav=on.2,or.r_gc.r_pw.&fp=5b092648e3667873&biw=1900&bih=886

  16. #31
    wink0r's Avatar
    wink0r is offline Moderator wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold
    Join Date
    Oct 2010
    Location
    East Coast, USA
    Posts
    2,183
    Thanks Given
    941
    Thanked 651 Times in 491 Posts
    Congratulations!! Great job!

    PS: I still think that changing the 'inset' to 'outset' would give a better effect for the translate box:

    From:
    Code:
    border: 10px inset #0097d5;
    To:
    Code:
    border: 10px outset #0097d5;
    That will put the darker borders on the bottom and right.
    Last edited by wink0r; 06-09-2011 at 12:42 AM.

  17. The Following User Says Thank You to wink0r For This Useful Post:


  18. #32
    Nemanja's Avatar
    Nemanja is offline IMTalk.org Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute Nemanja has a reputation beyond repute
    Join Date
    Jun 2010
    Location
    www
    Posts
    4,870
    Thanks Given
    703
    Thanked 3,044 Times in 1,247 Posts
    Quote Originally Posted by seobunny View Post
    LONG TIME THE LANDING PAGE WAS NOT IN THE SERPS!!!

    FIRST I THOUGHT I GET A PENALTY OR SANDBOXED... BUT NEMANJA STILL TOLD ME THAT I MUST BE PATIENT CAUSE ITS MAYBE GOOGLE DANCE...

    TODAY MY LANDING PAGE IS IN THE SERPS AND IM HAPPY TO TELL YOU GUYS THAT IM RANKING ON THE TARGETED KEYWORD "BOOKMARK TOOL" IN THE GERMAN GOOGLE RESULTS...



    ON SITE 1
    RANK 3



    Source:
    Code:
    http://www.google.de/#sclient=psy&hl=de&source=hp&q=bookmark+tool&btnG=Google-Suche&aq=f&aqi=&aql=&oq=&pbx=1&bav=on.2,or.r_gc.r_pw.&fp=5b092648e3667873&biw=1900&bih=886

    Glad that this page finally got out in the SERPs and landed right on the 3rd place
    Patience is an SEO Virtue

  19. The Following User Says Thank You to Nemanja For This Useful Post:


  20. #33
    JustGoWithIt's Avatar
    JustGoWithIt is offline IM & SEO Talker JustGoWithIt is just really nice JustGoWithIt is just really nice JustGoWithIt is just really nice JustGoWithIt is just really nice
    Join Date
    Jul 2010
    Location
    Right there!
    Posts
    2,192
    Thanks Given
    93
    Thanked 341 Times in 214 Posts
    Great job! Keep going on bunny. I hope a good success of your project
    Hello there.

  21. The Following User Says Thank You to JustGoWithIt For This Useful Post:


  22. #34
    newtoseo is offline Banned newtoseo is on a distinguished road
    Join Date
    Jun 2011
    Posts
    12
    Thanks Given
    2
    Thanked 1 Time in 1 Post
    bunny good luck for your project..

  23. #35
    samy is offline IM & SEO Whisperer samy is on a distinguished road
    Join Date
    Feb 2011
    Location
    internetcity
    Posts
    25
    Thanks Given
    9
    Thanked 4 Times in 4 Posts
    Gute Arbeit/good work!!

    Google loves subdomains ... I would page at a Subdoamine (maybe more, at gespinnten texts) then upload ...

    G. liebt Subdomaine ... ich würde die Page unter einer Subdoamine (vielleicht auch mehrere, bei gespinnten Texten) ins Netz stellen ...

  24. #36
    seobunny Guest
    Quote Originally Posted by samy View Post
    Gute Arbeit/good work!!

    Google loves subdomains ... I would page at a Subdoamine (maybe more, at gespinnten texts) then upload ...

    G. liebt Subdomaine ... ich würde die Page unter einer Subdoamine (vielleicht auch mehrere, bei gespinnten Texten) ins Netz stellen ...
    hahaha

    youre sweet...
    trying to talk twice hoho


 

Similar Threads

  1. And My Landing Page is Ready!
    By JustGoWithIt in forum Get Reviewed (Your Websites, SEO, Designs, Tools...)
    Replies: 15
    Last Post: 05-24-2011, 05:28 PM
  2. Fast Landing Page Creator
    By JustGoWithIt in forum Website Planning, Design & Development
    Replies: 2
    Last Post: 05-23-2011, 12:18 PM
  3. Creating Facebook Landing Page - Tutorial
    By JustGoWithIt in forum Social Networks & Community Websites
    Replies: 20
    Last Post: 05-07-2011, 11:57 AM
  4. Facebook Landing Page
    By JustGoWithIt in forum Website Planning, Design & Development
    Replies: 3
    Last Post: 11-28-2010, 01:56 PM
  5. Landing page optimization
    By insightful in forum On-Page SEO & Content Creation
    Replies: 0
    Last Post: 08-14-2010, 10:47 AM

Tags for this Thread

Posting Permissions

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