Align Adsense Widget on Blogger

How to Align Adsense Widget Center Left or Right on my Blog 
Whenever you want to put your adsense ad on blog header then by default adsense appear on left align. So in this blog i will guide you how to customize adsense widget align.

Step1: Sign in to Blogger
Step2: On the Blogger Dashboard, click on the Design link of the blog that you want to customize adsense widget align.

Step3: Under the Layout tab, click on Edit HTML tab to view the template’s HTML code.

Step4: Search for the following line of code:(Ctrl+F)
<b:widget id='AdSense



Find <Div> Tag Just Above the Adsense Widget..Then add align='center' in between <div and class=.....
In this fig.. you can add align either 1 2 or 3rd div tab..but 1st one is must...

Then ad will be display like this....

Note1:- It may be possible that your template may be different from that template. In this condition you only try to find <div > tab just above the <b:widget id='Adsense'
Imp:- 
For Left align   :   align='left'
For Right align :   align='right'

Note2:- You can also align center of your widget by putting <center> just above the <div> tab
eg: <center><div ........> .................. <b:widget id='Adsense' ................. </div></center>

Click on SAVE TEMPLATE CHANGES button when done.

Can i use AdSense ads with my Adult blog sites?



Is Google AdSense allow to put ads on Adult Blog Post
One thing i want to say google AdSense don't allow to ads on your porn blog post. ya it can be possible on your newly posted blog to show Adsnese ads. Most of them don’t care whether it is legal or illegal. Recently one of my friends asked me if it would be a good idea to start an adult blog. No doubt, it would get popular sooner & with lesser efforts than ordinary blogs & then he can add Adsense ads to earn revenue. I told him that Adsense doesn’t allow adult content. He pointed me that many blogs with mature content are using Adsense & he was too lazy to find the words from Google Adsense TOS. So, for those idle guys like my friend, here is what Adsense has to say about putting any kind of adult content with Adsense ads:
Sites with Google ads may not include or link to:
  • Pornography, adult or mature content
Here is the link that can tell you more about the site content that is not allowed with Adsense. You may keep using Adsense with your adult site, but there is every chance that Google will find it out & ban you. Then you have only yourself to blame.
So Don't think Negative...B+ve.....:)

Does Blogger allow adult content | Google Blogger Porn Content Policy


Google Blogger Porn Content Policy
Yes of course, Google Blogger allows adult content. But obviously  there are some restrictions. Here below just copy past the Blogger Content Policy...so just read carefully



Adult Content: We do allow adult content on Blogger, including images or videos that contain nudity or sexual activity. But, please mark your blog as 'adult' in your Blogger settings. Otherwise, we may put it behind a 'mature content' interstitial.
There are some exceptions to our adult content policy:
  • Do not use Blogger as a way to make money on adult content. For example, don't create blogs where a significant percentage of the content is ads or links to commercial porn sites.
  • No incest or bestiality content: We do not allow image, video or text content that depicts or encourages incest or bestiality.
Child safety: We have a zero tolerance policy towards content that exploits children. Some examples of this include:
  • Child pornography: We will terminate the accounts of any user we find publishing or distributing child pornography. We will also report that user to law enforcement.
  • Pedophilia: We do not allow content that encourages or promotes sexual attraction towards children. For example, do not create blogs with galleries of images of children where the collection of images or text accompanying the images is sexually suggestive.

So when you are quite careful about that you can post adult content.
But one question just remain that.."Is Google AdSense Allow to Put ads on Porn (adult) Blog Post?"

How to Remove and Hide Blog NavBar From Blogspot : Blogger NavBar


The Process to Hide or Remove Blogger NavBar
The Blogger NavBar contains Search Blog textbox, Flag Blog to notify Blogger about objectionable contents on the blog, Next Blog link to visit another blog randomly, plus links to create a blog or sign in to Blogger.

1. Remove and Hide NavBar in Blogger Widget Template
Step1: Sign in to Blogger
Step2: On the Blogger Dashboard, click on the Design link of the blog that you want to disable or remove its Title and Description.

Step3: Under the Layout tab, click on Edit HTML tab to view the template’s HTML code.

Step4: Search for the following line of code:
   ]]>
  1. Before the line, add in the following line of code:
    #navbar { display: none; }
    or:
    #navbar-iframe { display: none !important; }
  2. Click on SAVE TEMPLATE to make the change effective.
2. Remove and Hide NavBar in Blogger Classic Template
Step1: Login to Blogger.
Step2: On the Blogger Dashboard, click on the Template link of the blog that you want to disable its NavBar. You can also click Customize on NavBar while visiting your blog.


Step3: The Edit HTML page under Template tab should be loaded. If not, go to the tab.

Step4: Search for the following line of code:
</style>

Then, add the following line of code before that line:
#navbar-iframe { display: none; }

The Blogger Classic Template uses iframe to load the NavBar, and styles it with ID named navbar-iframe. The name actually also works for new Blogger Wedget Template too.

Step5: After hiding the Nav Bar in Blogger using Classic Template, there tends to be a gap that replaces the navigation bar. The gap may be white, red, green, blue, or black in color, depends on what is your background color. To remove the gap, find the following code (normally near the top of the HTML):

body {

Add in the following like of code after the body tag:
position: relative;
top: -32px;

Step6: Click on SAVE TEMPLATE CHANGES button when done.

How to Hide or Remove blog header Title , Description from Blogspot


The Process to Hide Blog Title and Description
New bloggers are often face problem for hiding blogspot title from their blogs. It can be removed via simple steps but if you want to Hide them permanently then Simple Follow below Instruction.


Step1: Sign in to Blogger
Step2: On the Blogger Dashboard, click on the Design link of the blog that you want to disable or remove its Title and Description.

Step3: Under the Layout tab, click on Edit HTML tab to view the template’s HTML code.

Step4: Search for the following line of code:


a) Hide Blog Title...
Search for #Header h1 in your HTML code. Now insert  display:none;  at the end of the code.
.Header h1 
{
  font: $(header.font);
  color: $(header.text.color);
  text-shadow: $(header.shadow.offset.left) $(header.shadow.offset.top) $(header.shadow.spread) rgba(0, 0, 0, .2);
 display:none;
}

.Header h1 a {
  color: $(header.text.color);
 display:none;
}

b) Hide Blog Description
Search for  #Header .description.in your HTML code. Now insert  display:none; at the end of the code.

.Header .description {
  font-size: $(description.text.size);
  color: $(description.text.color);
 display:none;
}


Note:- You can also use this option if your want to add a header image that will completely hide your title and description.

  • Click "Edit" on the title page element  found below the navbar page element on the top.
  • Upload your header image and click on the radio button "Instead of title and description" under placement.
Click Save and view your blog.