How to add a simple slide panel to your blog
1. Log in to your dashboard--> layout- -> Edit HTML
2. Click on "Expand Widget Templates"
3. Search "Ctrl+F" and find </head>.
4. Before </head> add next code:
<script type="text/javascript" src="http://descarca.googlecode.com/files/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn-slide").click(function(){
$("#panel").slideToggle("slow");
$(this).toggleClass("active"); return false;
});
});
</script>
If you have Jquery already installed on your template delete the red line.
5. Search for ]]></b:skin> and before it paste the next code:
#panel {
background: #fff;
width: auto;
height: 200px;
font: 90%/120% Arial, Helvetica, sans-serif;
color: #000;
padding: 10px;
text-align: justify;
display: none;
}
.slide {
margin: 0;
padding: 0;
border-top: solid 4px #000;
background: url('http://img406.imageshack.us/img406/6227/btnslide.gif') no-repeat center top;
}
.btn-slide {
background: url('http://img535.imageshack.us/img535/2351/whitearrow.gif') no-repeat right -50px;
text-align: center;
width: 144px;
height: 31px;
padding: 10px 10px 0 0;
margin: 0 auto;
display: block;
font: bold 120%/100% Arial, Helvetica, sans-serif;
color: #fff;
text-decoration: none;
}
.active {
background-position: right 12px;
}
You can change the widht height, padding etc. values according to your needs.
6. Now go to Layout-->Page Element and click on "Add a gadget". Select "html/java script" and add the code given below and click save.
<div id="panel">
<!-- you can put content here -->
</div>
<p class="slide"><a href="#" class="btn-slide">Slide Panel</a></p>
DEMO:
demo demo demo demo demo demo
demo demo demo demo demo demo
demo demo demo demo demo demo
demo demo demo demo demo demo
demo demo demo demo demo demo
16 comments
It does not work on template made by Aristeer 3, if I put the codes then I do not have the menu bottons, I have to delete these codes here to have again the menu bottons. Also if I put them in template made by Artisteer 2 woks but if I have an other slider in it does not works.
And a question
Is possible to have more than one gatzets with this here?
I checked the script and it works with templates made with Artisteer 3. Maybe the problem is with your template, it's possible that this script is in conflict with other scripts you have .
Xm yes it would be the other I have for a slider
Thanks for your tutorials in your blogg. I come with a question.
Is possible to put more gatzets with this script?
To make it to put more gatzets?
I tried it in one of my where I have no other script it conflicts and I saw that I can put only one gatzet...
Yes you can add more than 1 slider. Just repeat all the steps in the tutorial but change the :
#panel ---to--- #panel2
.slide ---to ---.slide2
btn-slide ---to ---btn-slide2
in all the places you can find them.
Thanks for the answer.
I tried it but it does not work right.
I changed the three positions you write, following-repeated the steps but after, the orange icon with the: slide panel, was not to see, was only the two words to see.
Also the gadget was open not closed.
I put a second gadget and after it, was only the second to see but the words: -Slide panel –were to see without the orange icon, in the two different places. After I deleted the numbers it came right.
I have modify a little the script. Try now. If you don't have any luck you can send me the template and I will do it for you.
Remeber you have to add the scripts 2 times. Once for first slide and another time for the second slide. For the second slide change:
#panel ---to--- #panel2
.slide ---to ---.slide2
btn-slide ---to ---btn-slide2
in all the places you can find them.
Here you have a demo to see the working expemple:
http://tyjuj.blogspot.com/
Yes I think this is the solution, I will try ti now, thanks very much, ok if will not work I give you the template
If I put for the second time the script it brings all the template to the right and it is to see the site from the middle to the left, not like it is.
Here is the blogg I try
http://trellogatos.blogspot.com/
Sorry I tried again but now the template looks right but the slider stays not open!
Send me the template and I will fix it.
FYI just in case this happens to you. I already had jquery running from other headers, so just removing that one line made it work.
Hi.
I try to put a third one after I used two for a wile. Must I follow the steps exactly like here? I have done it so, but the third one slide does not open.
Of course I will try now once more but after some times I have tried I am not sure that I will do it right...
For the third slide you have to modify all:
#panel ---to--- #panel3
.slide ---to ---.slide3
btn-slide ---to ---btn-slide3
in all the places you find them.
And remember you must have only a Jquery script installed. By default all templates made with Artisteer have Jquery, you don't have to install a new one.
how to make like your comment panel...please
I will post a tutorial in a couple days.
Click to Add a New Comment
Leave your comment
- If you're asking a question click the Subscribe By Email link, below the comment form, to be notified of replies.
- Do NOT add links to the body of your comment as they will not be published.
- Only the comments posted in ENGLISH will be approved.
- If you have a problem check first the comments , maybe you will find the solution there.