Pages

Showing posts with label blogger. Show all posts
Showing posts with label blogger. Show all posts

Thursday, March 12, 2015

Remove blogger navbar

Well, didnt take long to google it, but might be useful someday. If you want to remove the top navigation bar in blogger (Next blog,...).

Here is the initial tip which didnt work for me. And the final response (comment) there worked for me. Had to place this

#navbar {
height: 0px;
visibility: hidden;
display: none;
}


just bellow the body css selector.

UPDATE: You can also just go to the "Template designer" and at "Advanced" => "Add CSS" add this css:

#navbar{display:none}
Read more »

Monday, March 2, 2015

How to Put Pictures Side By Side in Blogger

Hi everyone!  I know its been a few weeks, but Im finally getting around to my blog and my Tech Tuesday post!



This was very popular on the poll!


Before you start the tutorial, I want to forewarn you that doing this can be kind of intimidating since it involves code.  I have my fingers crossed for you that you finish it in steps 1-3 (which involves no code)... but if not, just follow the steps in order.  Good luck!



Copy this code:
<br>
<table><tbody>
<tr><td>photoa
</td><td>photo b
</td></tr></tbody></table>
<br>


Here are my two pictures side by side:

http://www.pinterest.com/JessicaKings/tutorials-blogging-tips-and-tricks/
http://www.pinterest.com/JessicaKings/tutorials-using-technology-to-make-life-easier-for/ 

 You can download this tutorial as a PDF by clicking this picture!
 Download this tutorial here! 
Note: This tutorial is hosted on Google Drive.  To save it from there, just open the file and click File > Download to save onto your computer!

For next weeks poll, Ill add another blogger option: how to show HTML code on your blog (similar to what I did after step 5, above).

Read more »