0

showing profile only hompage

  • I think this post can very use full to bloggers.the profile widget showing every time your blog..that very borring to the reders.while every post vewing following every widget like.now solved that problem .now your profile displaying only hompage

    below in the code which is the hilighted ,add them to your same codes

    <b:widget id='Profile1' locked='false' title='About Me' type='Profile'>
    <b:includable id='main'>
    <b:if cond='data:blog.homepageUrl == data:blog.url'>
    <b:if cond='data:title != ""'>
    <h2><data:title></data:title></h2>
    </b:if>
    <div class='widget-content'>
    ...
    ...
    </div>
    </b:if>
    </b:includable>
    </b:widget>


    now click the "savetemplates"
    read more
    0

    making three column footer

  • now you can change your blogger templates to three column footer as your wish...get ready to make the html hard work! get release your mind,because it' carefully done.first,i have a request:-please save your templates html code in a notepad or wordpad.
    <div id='footer-wrapper'>
    <b:section class='footer' id='footer'/>

    <b:section class='footer' id='footer'/>
    change the above hilighted code with as below codes

    <div id='footer-column-container'>
    <div id='footer2' style='width: 30%; float: left; margin:0; text-align: left;'>
    <b:section class='footer-column' id='col1' preferred='yes' style='float:left;'/>
    </div>
    <div id='footer3' style='width: 40%; float: left; margin:0; text-align: left;'>
    <b:section class='footer-column' id='col2' preferred='yes' style='float:left;'/>
    </div>
    <div id='footer4' style='width: 30%; float: right; margin:0; text-align: left;'>
    <b:section class='footer-column' id='col3' preferred='yes' style='float:right;'/>
    </div>
    <div style='clear:both;'/>
    <p>
    <hr align='center' color='#5d5d54' width='90%'/></p>
    <div id='footer-bottom' style='text-align: center; padding: 10px; text-transform: lowercase;'>
    <b:section class='footer' id='col-bottom' preferred='yes'>
    <b:widget id='Text2' locked='false' title='' type='Text'/>
    </b:section>
    </div>
    <div style='clear:both;'/>
    </div>

    Now find the </b:skin> code in your template
    Immediately before above code, add the below lines of the code

    #footer-column-container {
    clear:both;
    }

    .footer-column {
    padding: 10px;
    }

    Click on "Save Templates" and refresh your site
    read more
    0

    Opening multiple window from a link

  • If you're looking for a JavaScript code that will enable your visitors to open a customized pop-window from a link, this JavaScript tip may be what you're looking for.
    You can open multiple customized pop-windows within your web page that are opened via links. This JavaScript code provides a great way to display tips, instructions or whatever you'd like.
    Examples:
    Place the following code between your HEAD tags:

    < SCRIPT language="JavaScript">
    < !-- Script courtesy of http://www.web-source.net - Your Guide to Professional Web Site Design and Development
    function open1() {
    var open1 =
    window.open('http://www.domain.com','','scrollbars=yes,height=600,width=800,resizable=yes');
    }
    function open2() {
    var open2 =
    window.open('http://www.domain.com','','scrollbars=yes,height=600,width=800,resizable=yes');
    }
    function open3() {
    var open3 =
    window.open('http://www.domain.com','','scrollbars=yes,height=600,width=800,resizable=yes');
    }
    // -->
    < /SCRIPT>
    Carefully edit the text indicated in red to suit your needs.

    For each new window you'd like to open with a link, you must add a new function to the JavaScript like this:


    function open4() {
    var open4 =
    window.open('http://www.domain.com','','scrollbars=yes,height=600,width=800,resizable=yes');
    }

    And, create your links with the same name as the function like this:


    <A href="javascript:open1()">Click Here<A href="javascript:open2()">Click Here<A href="javascript:open3()">Click Here</td>
    read more

    Subscribe