How to find Blogger Widget ID and Section ID


Suppose you want to change the text color in one of your widgets, in the sidebar. You know this is done in the stylesheet and you can even find the code for the sidebar. But changing the code for the sidebar will affect the whole sidebar. Then how do you address only that particular widget?
You need something unique -an Id, a widget Id that is. With a widget Id, you can:

Use it as a selector in stylesheet when styling the widget. ( To use an Id as a selector, you need to add the pound sign “#” as a prefix, as in #YourWidgetId {} ).Use it with Javascript getElementById method to access the widget content.

If you add a widget via Add A Gadget link in Page Elements, Blogger will automatically generate an Id for the widget, without telling you what the Id is. To find the Id, you’d normally have to search inside the template HTML code.
Well I have searched a simpler and more straightforward way, without the need to go into your template HTML.
As an example I’m going to check my Recent Posts widget Id and the corresponding section Id. Follow me through the steps:
  • Login to  Blogger
  • Go to Design > Page Elements and locate the widget. 
  • Click the Edit link and widget configuration window will pop up.
  • Notice there is an url of the widget on top of the window. What we are looking for is somewhere within that url.
  • Click maximize (the square icon) on top right corner of the window to view the window in full screen.


This is the url: 


http://www.blogger.com/rearrange?blogID=XXXXXXXXXXX&action=editWidget&sectionId=sidebar4&widgetType=null&widgetId=HTML4


There they are, sectionId=sidebar4  and widgetId=HTML4. So  the section Id is sidebar4 and my Recent Posts widget Id is HTML4.

Notice you can also find your blog Id (blogID) in the url.Mission accomplished! Enjoy!

No comments:

Post a Comment

Let us know, what you think about this blog