1. Halo Guest, pastikan Anda selalu menaati peraturan forum sebelum mengirimkan post atau thread baru.

need help

Discussion in 'Review Situs' started by dezavu, Oct 3, 2005.

  1. dezavu

    dezavu Newbie

    Joined:
    Sep 29, 2005
    Messages:
    21
    Likes Received:
    0
    minta saran sama teman2 semua gimana neh supaya GA border sama background nyatu sama background blog ogut, agut binun soalnya
    blog agut neh :
    gadgets-news.blogspot.com

    thxx
     
  2. jumbet

    jumbet Ads.id Pro

    Joined:
    Sep 18, 2005
    Messages:
    325
    Likes Received:
    15
    Ganti kode anda :

    Code:
    <script type="text/javascript"><!--
    google_ad_client = "pub-xxxxxxxxxxxx";<!--isi dengan pubId anda//-->
    google_ad_width = 160;
    google_ad_height = 600;
    google_ad_format = "160x600_as";
    google_ad_type = "text";
    google_ad_channel ="";
    google_color_border = "CCDDBB";
    google_color_bg = "CCDDBB";
    google_color_link = "0000CC";
    google_color_url = "000000";
    google_color_text = "000000";
    //--></script>
    <script type="text/javascript"
      src="[url]http://pagead2.googlesyndication.com/pagead/show_ads.js">[/url]
    </script>
    Background +border sama dengan warna sidebar anda (#CDB=#CCDDBB), link warna biru, text warna hitam, url warna hitam.

    Reply kalo masih binun.
     
  3. dezavu

    dezavu Newbie

    Joined:
    Sep 29, 2005
    Messages:
    21
    Likes Received:
    0
    om jumpet thank kyu, udah ga binun lagi ;D
     
  4. jumbet

    jumbet Ads.id Pro

    Joined:
    Sep 18, 2005
    Messages:
    325
    Likes Received:
    15
    Anytime ..
     
  5. dezavu

    dezavu Newbie

    Joined:
    Sep 29, 2005
    Messages:
    21
    Likes Received:
    0
  6. ghaghah

    ghaghah Ads.id Pro

    Joined:
    Oct 12, 2005
    Messages:
    485
    Likes Received:
    264
    Location:
    earth
    aku dah liat
    dah bagus cuman satu kendala yaitu terlalu padet isi nya (main content) jadi mungkin bisa pake teknik yang ngasih link read more.
     
  7. dezavu

    dezavu Newbie

    Joined:
    Sep 29, 2005
    Messages:
    21
    Likes Received:
    0
    klo pake teknik itu caranya gimana yaa ???
    maklum baru belajar
     
  8. cosa

    cosa Super Hero

    Joined:
    Aug 30, 2005
    Messages:
    1,561
    Likes Received:
    168
    sama. Aku juga pengen tau caranya "read more" kalo di blogspot. Dulu rasanya pernah ada yg ngasih tau tehniknya di forum BlogFarm, tapi kok aku cari" lagi gak ada postingnya.
     
  9. ghaghah

    ghaghah Ads.id Pro

    Joined:
    Oct 12, 2005
    Messages:
    485
    Likes Received:
    264
    Location:
    earth
    Nih caranya buat link read more di frontpage kita di blogger, aku coppy langsung dari sumbernya
    ======
    How can I create expandable post summaries?

    [Back To Search Results]

    With this trick, you can choose to display an arbitrary amount of text from the beginning of each post, as a teaser for the whole thing. Then users who want to read the rest of the post can click a link to see the full text. This is handy if you have lots of long articles all on one page. Note that you'll need to have post pages enabled in order to make this feature work.

    There are three ingredients that go into this feature: conditional CSS, a "read more" link for each post, and a modification for the posts that use this feature. So let's go through it step by step.
    Conditional CSS

    We're going to use conditional tags to change how posts display on different pages. Add the following code to your style sheet:

    <MainOrArchivePage>
    span.fullpost {display:none;}
    </MainOrArchivePage>

    <ItemPage>
    span.fullpost {display:inline;}
    </ItemPage>

    Your style sheet is usually near the top of your template, between the <style> and </style> tags. If you have your style sheet in a separate file, you'll still need to add these lines in your template, so the conditional tags will work. Just make sure you add in the <style> tags around them.


    What we did here was to define a class called "fullpost" that will appear only on post pages (permalinks). Part of each post will use this class, as we'll see later.
    "Read More" Links

    Add the following code to your template, somewhere after the <$BlogItemBody> tag:

    <MainOrArchivePage><br />
    <a href="<$BlogItemPermalinkURL$>">Read more!</a>
    </MainOrArchivePage>

    This link will only appear on the main page and archive pages, and it will redirect your reader to the post page containing the full text of your post. You can replace the "Read more!" text with whatever you like, of course.
    Post Modifications

    The final piece that we need is a little bit of code in your actual post. Each post that you want to use this feature on will need this code:

    <span class="fullpost"></span>

    This part can actually go in the post template, if you don't want to have to type it for each post. You'll enter the summary text outside the span tags and the remainder inside, like so:

    Here is the beginning of my post. <span class="fullpost">And here is the rest of it.</span>

    Now, when a reader visits your blog, this post will appear like this:

    Here is the beginning of my post.
    Read more!

    When they click the link, they'll go to the post page where they'll see the whole thing:

    Here is the beginning of my post. And here is the rest of it.

    Notes:

    * As with any template modifications, you should be sure to save a backup copy of your template before you start. Just copy and paste all your code to a text file on your hard drive, so you'll have it there as a replacement in case anything goes wrong.
    * An alternative to creating post excerpts like this is to use the show/hide method on entire posts. Each method has its own advantages and disadvantages.
    * Advantages to this method: Customizable summaries, rather than titles only. Can be applied to some posts and not others (for instance, you might only want this for your longer posts).
    * Disadvantages: Requires changes to the posts themselves, rather than to the template only. However, the "read more" link is in the template, so it will appear regardless of whether a post has been truncated or not. (Modifying this feature is left as an exercise for the reader.)

    Article Search

    Suggested Reading

    * Welcome to Blogger!
    * Supported Browsers
    * All about the Post Editor
    * Login Difficulties?
    * Known Issues

    Most Popular

    1. How do I edit my link list?
    2. How do I post pictures?
    3. What is the word verification option?
    4. I can't log in. What should I do?
    5. Can I use keyboard shortcuts while posting?

    more...
    Ask Support

    Can't find what you're looking for in Blogger Help?

    First check Blogger Status and our known issues page, then write Blogger Support and we'll see what we can do.
     
  10. jumbet

    jumbet Ads.id Pro

    Joined:
    Sep 18, 2005
    Messages:
    325
    Likes Received:
    15
    Wah tambah satu yang hebat di blogging, om cosa hebat di wp om ghaghah hebat di blogger.
    Manntab!
     
  11. ghaghah

    ghaghah Ads.id Pro

    Joined:
    Oct 12, 2005
    Messages:
    485
    Likes Received:
    264
    Location:
    earth
  12. casey

    casey Ads.id Pro

    Joined:
    Dec 19, 2015
    Messages:
    326
    Likes Received:
    0
    aku dah liat

    dah bagus cuman satu kendala yaitu terlalu padet isi nya (main content) jadi mungkin bisa pake teknik yang ngasih link read more.
     
  13. krisman007

    krisman007 Ads.id Pro

    Joined:
    Dec 23, 2015
    Messages:
    302
    Likes Received:
    1
    Anytime ..
     
  14. GoogleCorp

    GoogleCorp Ads.id Pro

    Joined:
    Dec 23, 2015
    Messages:
    314
    Likes Received:
    0
  15. @rizalkoe

    @rizalkoe Banned

    Joined:
    Dec 23, 2015
    Messages:
    307
    Likes Received:
    1
    Ganti kode anda :




    Code:
    <script type="text/javascript"><!--
    google_ad_client = "pub-xxxxxxxxxxxx";<!--isi dengan pubId anda//-->
    google_ad_width = 160;
    google_ad_height = 600;
    google_ad_format = "160x600_as";
    google_ad_type = "text";
    google_ad_channel ="";
    google_color_border = "CCDDBB";
    google_color_bg = "CCDDBB";
    google_color_link = "0000CC";
    google_color_url = "000000";
    google_color_text = "000000";
    //--></script>
    <script type="text/javascript"
    * src="http://pagead2.googlesyndication.com.../show_ads.js">
    </script>
    Background +border sama dengan warna sidebar anda (#CDB=#CCDDBB), link warna biru, text warna hitam, url warna hitam.



    Reply kalo masih binun.
     
  16. DK417DI

    DK417DI Ads.id Pro

    Joined:
    Dec 23, 2015
    Messages:
    304
    Likes Received:
    3
    Nih caranya buat link read more di frontpage kita di blogger, aku coppy langsung dari sumbernya

    ======

    How can I create expandable post summaries?



    [Back To Search Results]



    With this trick, you can choose to display an arbitrary amount of text from the beginning of each post, as a teaser for the whole thing. Then users who want to read the rest of the post can click a link to see the full text. This is handy if you have lots of long articles all on one page. Note that you'll need to have post pages enabled in order to make this feature work.



    There are three ingredients that go into this feature: conditional CSS, a "read more" link for each post, and a modification for the posts that use this feature. So let's go through it step by step.

    Conditional CSS



    We're going to use conditional tags to change how posts display on different pages. Add the following code to your style sheet:



    <MainOrArchivePage>

    span.fullpost {display:none;}

    </MainOrArchivePage>



    <ItemPage>

    span.fullpost {display:inline;}

    </ItemPage>



    Your style sheet is usually near the top of your template, between the <style> and </style> tags. If you have your style sheet in a separate file, you'll still need to add these lines in your template, so the conditional tags will work. Just make sure you add in the <style> tags around them.





    What we did here was to define a class called "fullpost" that will appear only on post pages (permalinks). Part of each post will use this class, as we'll see later.

    "Read More" Links



    Add the following code to your template, somewhere after the <$BlogItemBody> tag:



    <MainOrArchivePage><br />

    <a href="<$BlogItemPermalinkURL$>">Read more!</a>

    </MainOrArchivePage>



    This link will only appear on the main page and archive pages, and it will redirect your reader to the post page containing the full text of your post. You can replace the "Read more!" text with whatever you like, of course.

    Post Modifications



    The final piece that we need is a little bit of code in your actual post. Each post that you want to use this feature on will need this code:



    <span class="fullpost"></span>



    This part can actually go in the post template, if you don't want to have to type it for each post. You'll enter the summary text outside the span tags and the remainder inside, like so:



    Here is the beginning of my post. <span class="fullpost">And here is the rest of it.</span>



    Now, when a reader visits your blog, this post will appear like this:



    Here is the beginning of my post.

    Read more!



    When they click the link, they'll go to the post page where they'll see the whole thing:



    Here is the beginning of my post. And here is the rest of it.



    Notes:



    * As with any template modifications, you should be sure to save a backup copy of your template before you start. Just copy and paste all your code to a text file on your hard drive, so you'll have it there as a replacement in case anything goes wrong.

    * An alternative to creating post excerpts like this is to use the show/hide method on entire posts. Each method has its own advantages and disadvantages.

    * Advantages to this method: Customizable summaries, rather than titles only. Can be applied to some posts and not others (for instance, you might only want this for your longer posts).

    * Disadvantages: Requires changes to the posts themselves, rather than to the template only. However, the "read more" link is in the template, so it will appear regardless of whether a post has been truncated or not. (Modifying this feature is left as an exercise for the reader.)



    Article Search



    Suggested Reading



    * Welcome to Blogger!

    * Supported Browsers

    * All about the Post Editor

    * Login Difficulties?

    * Known Issues



    Most Popular



    1. How do I edit my link list?

    2. How do I post pictures?

    3. What is the word verification option?

    4. I can't log in. What should I do?

    5. Can I use keyboard shortcuts while posting?



    more...

    Ask Support



    Can't find what you're looking for in Blogger Help?



    First check Blogger Status and our known issues page, then write Blogger Support and we'll see what we can do.
     
  17. IDvsUS

    IDvsUS Ads.id Pro

    Joined:
    Dec 23, 2015
    Messages:
    280
    Likes Received:
    0
    om jumpet thank kyu, udah ga binun lagi ;D
     
  18. cangik

    cangik Ads.id Pro

    Joined:
    Dec 23, 2015
    Messages:
    348
    Likes Received:
    0
    sama. Aku juga pengen tau caranya "read more" kalo di blogspot. Dulu rasanya pernah ada yg ngasih tau tehniknya di forum BlogFarm, tapi kok aku cari" lagi gak ada postingnya.
     
  19. maulana akbar faizal

    maulana akbar faizal Ads.id Pro

    Joined:
    Dec 23, 2015
    Messages:
    291
    Likes Received:
    2
    Wah tambah satu yang hebat di blogging, om cosa hebat di wp om ghaghah hebat di blogger.

    Manntab!
     
  20. paperone

    paperone Banned

    Joined:
    Dec 27, 2015
    Messages:
    209
    Likes Received:
    2
    aku dah liat

    dah bagus cuman satu kendala yaitu terlalu padet isi nya (main content) jadi mungkin bisa pake teknik yang ngasih link read more.
     

Share This Page