Ask Your Question
4

How to combine the blogger widget list and HTML list?

asked 2021-06-28 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-07-06 17:00:00 +0000

nofretete gravatar image

To combine the blogger widget list and HTML list, follow these steps:

  1. Login to your blogger dashboard and go to "Layout".
  2. Add the "HTML/JavaScript" widget in the desired location where you want to display the combined list.
  3. Copy and paste the following HTML code into the widget:
<ul>
  <!-- Blogger Widget List -->
  <b:widget id='BlogArchive1' locked='false' title='Blog Archive'>
    <b:includable id='main' var='top'>
      <b:loop values='data:links' var='link'>
        <li><a href='data:link.url'><data:link.name /></a></li>
      </b:loop>
    </b:includable>
  </b:widget>

  <!-- HTML List -->
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ul>
  1. Customize the HTML list by replacing it with your own list items.
  2. Save the changes and view your blog to see the combined list.
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-06-28 11:00:00 +0000

Seen: 10 times

Last updated: Jul 06 '22