.

.

Thursday 23 August 2012

The Round Hover Effect Css Menubar For Blogger


Simple css menu bar for blogger.Its include nice  hover style.You can add this to simple blogs and can link with main pages.menu bars, you ca do with easy steps. Follow these steps to add it your blog.

1. Log in to blogger account and Go to Design >> Edit HTML

2. Put checked marked in Expand Widget Templates

3. Find this tag by using Ctrl+F    ]]></b:skin>

4. Paste below code Before ]]></b:skin> tag


/*menubar by http://xtremetipsntricks.blogspot.in/ */

#bloggertrixmenu{

display:block;

width:100%;

overflow:hidden;

background:url("") repeat-x scroll 0 -357px #E3E3E3;

border-bottom:1px solid #FFFFFF;

border-top:1px solid #FFFFFF;

height:35px;

position:relative;

}

#btrixmenu1{

margin: 0px 10px;

padding: 0px;

width:940px;

height:88px;

}

#btrixmenu1 ul {

float: left;

list-style: none;

margin: 0px;

padding: 0px;

}

#btrixmenu1 li {

float: left;

list-style: none;

margin: 5px 0px;

padding: 0px 5px;

line-height:20px;

border-left:1px solid #FFFFFF;

border-right:1px solid #CCCCCC;

}

#btrixmenu1 li a, #btrixmenu1 li a:link, #btrixmenu1 li a:visited {

color:#FFFFFF;

display:block;

display: block;

margin: 0px;

padding: 0px 10px ;

color:#4E4E4E;

font:bold 120%/20px 'Segoe UI',Calibri,'Myriad Pro',Myriad,'Trebuchet MS',Helvetica,Arial,sans-serif;

text-align:center;

text-decoration:none;

text-shadow:1px 1px 1px #FFFFFF;height:23px;

}

#btrixmenu1 li a:hover {

background:#282828;

color: #fff;

margin: 0px;

padding: 0px 10px ;

text-decoration: none;

-webkit-border-radius: 5px;

-moz-border-radius: 5px;

text-shadow: none;

}

#btrixmenu1 li.current_page_item a{

background:#7a8c12;

color: #fff;

-webkit-border-radius: 5px;

-moz-border-radius: 5px;

text-shadow: 1px 1px 1px #535F0C;

}

/*menubar by http://xtremetipsntricks.blogspot.in/ */

5. Now Find this code  by using Ctrl+F <div id='content-wrapper'>

6.  Paste below code Before <div id='content-wrapper'> code


<div class='clear'></div>

<div id='xtremetipsntricksmenu'>

<div class='btrixmenu1' id='btrixmenu1'><ul>

<li><a class='home' href='YOUR BLOG ADDRESS HERE'>Home</a></li>

<li><a href='URL'>TITLE 1</a></li>

<li><a href='URL'>TITLE 2</a></li>

<li><a href='URL'>TITLE 3</a></li>

<li><a href='URL'>TITLE 4</a></li>

<li><a href='URL'>TITLE 5</a></li>

<li><a href='http://xtremetipsntricks.blogspot.in/'>Add This</a></li>

</ul></div></div>

*Replace Url With your URL
*Replace Title with as your like.

7. Now save your template
 you are done.

Transparent Blogger Menubar With Subscription And Fan Page

Actually menubar is important to blogger.This is newest menubar that helps you to increase your Feed subscribers and Facebook fans.And its transparent bar.It  will show bottom of your page.This is also
good ways to increase subscribers and fans.Follow these simple steps to add it to your blog.

1. Log in to blogger  Design > Edit HTML


2. Find this tag by using Ctrl+F   </body>

3. Paste below code Before </body> tag
<style type='text/css'>

#ut-sticky

{

background:url(&#39;http://3.bp.blogspot.com/-7oGSlq30cTw/Tv33CS4WGgI/AAAAAAAAA0w/HxId_tRUae8/s1600/ut-bg.png&#39;) repeat;

color:#fff;

text-align: center;

margin:0 auto;

border-top: 1px solid #fff;

height:28px;

font-size:13px;

position:fixed;

bottom:0;

z-index:999;

width:95%;

border-top-left-radius:15px;

border-top-right-radius:15px;

display:block;

font-weight: bold;

font-family: arial,&quot;Helvetica&quot;;

font-color:#fff;

}

#ut-sticky:hover

{background:#333;}

#ut-sticky p{line-height:5px; font-size:13px; text-align:center; width:95%; float:left;}

#ut-sticky p a{ text-decoration:underline; color:#FFFF33;}

.ut-cross{display:block; position:relative; right:15px; float:right;}

.ut-cross a{font-size:18px; font-weight:bold; font-family:&quot;Arial&quot;; color:#FF0000; line-height:30px;}

</style>



<div id='ut-sticky'>





<p>Get Latest Updates: <a href="http://feedburner.google.com/fb/a/mailverify?uri=bloggertrix" target="_blank">Subscribe Now</a> | <a href="http://www.facebook.com/xtremetipsntricks" target="_blank">Like Us Facebook</a></p>



<div class='ut-cross'><a href='javascript:hide_cross();'>X</a></div>



</div>



<script language='JavaScript'>





function hide_cross() {



crosstbox = document.getElementById(&quot;ut-sticky&quot;);



crosstbox.style.visibility = &#39;hidden&#39;;



}



</script>

4. Now save your Template

Lock a folder without software



STEPS:
1- Make a new folder ( name it as you like )

2- Inside this folder make a ( TXT ) file & copy inside it this (the entire thing) that is written below.





Quote:
Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End


3- After u copy the Commanding go to
 line 23 (or try using shortcut- CTRL+F and type password to locate the line) u will find this word : password here (Change it with any password u like.) is :

eg: 
if NOT %pass%== narnia1234 goto FAIL 
//so ur password here becomes narnia1234 .//



4- After that go to "save as" & name this file as "locker.bat "

5- Now back to the folder & u will find a ( LOCKER ) commanding. (locker.exe)

6- Double Click on it & u will find a new folder (Private )

7- Ok ,, Now copy what u want in this "private Folder" & after that come out of the folder, and Double click on locker again. It will open and ask if you want to lock your folder? Y/N ?

8- Type Y. your private folder will dissapear.

9- If you want to UNLOCK your folder ,go to (locker) & type your pass and you will see your private folder.

It not only hides the fodler, but incase, u unhide all files... and try opening it without entering password, it will take u to the control panel...
Also, if u want to store files on your Pen-Drive, u can use this script. No Software Required

Incase u delete your Locker file (just in case), then u can make a new one (but with the same password) and open it from that.

Alternatively, u can keep this locker file somewhere else, and when u want to open ur folder, only then bring it back to that place ..

 

Get Latest Updates: Subscribe Now | Like Us on Facebook

X