Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

How To Change Height and Width of Blogger Comment Box 0

Razor | 3:05 AM | , , , , ,


1.Log in to your Blogger dashboard > Select Your Blog > Template > Edit HTML

2.Click on "Expand Widget Templates"

3.Scroll down and  Find this:

<iframe allowtransparency='true' class='blogger-iframe-colorize' frameborder='0' height='275' id='comment-editor' scrolling='no' src='' width='100%'/>

4.Now change width and height as your choice.

5.save your template....


Add New Back to Top Button for Blogger 1

Razor | 8:53 AM | , , ,


1.Login to your blogger dashboard and Select Your Blog. 
2.Click "Template" ,and click Edit HTML. 
3.Now Click "Proceed
4.Click on 'Expand Widget Templates' . 
5.Find ( Press ctrl+f )
6.Add this code after </body>


<!--Back to top Start CoolbloggerTutorials.com--> <a href='#' style='position: fixed; bottom:5px;left:5px;' title='Back to Top'> <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEic1gUqPKZWThp3UJHuOcIcbnwPELNUfSffOkwFWC9LXYBxHNK4edj_7RYj1M7FZ2IzCwX1l4_kBNlb4mq96yrGOL1AWSVuT8Ev219ciTJOTCM_s_JjMga4Nm9ikjtHFKNXcqEHl0LdZwsG/s1600/Arrow+up+-+TemplatesDoctor+(8).png' style='border: none;'/></a> <!--Back to top End CoolbloggerTutorials.com-->

7.Now Save Your Template .

* More Back to Top Buttons :




HTML Iframes | How to Add Iframes 0

Razor | 11:04 PM | , , ,



An iframe is used to display a web page within a web page.










Like This :



Syntax for adding an iframe:



<iframe src="URL"></iframe>

The URL points to the location of the separate page.



Iframe - Set Height and Width



The height and width attributes are used to specify the height and width of the iframe.

The attribute values are specified in pixels by default, but they can also be in percent (like "80%").



<iframe src="demo_iframe.htm" width="200" height="200"></iframe>




Iframe - Remove the Border



The frameborder attribute specifies whether or not to display a border around the iframe.
Set the attribute value to "0" to remove the border:

<iframe src="demo_iframe.htm" frameborder="0"></iframe>