http://visnum.com/how-to-transfer-a-single-post-or-selected-posts-from-one-blog-to-another/



Posted on December 12th, 2009 | Filed under Wordpress | No Comments »

For some reason the JSCook Menu draws a pointer cursor rather than a hand cursor for its menus.  Thanks to yuanheng.org, here's a solution:

 

.ThemeIEMainItem,.ThemeIEMainItemHover,.ThemeIEMainItemActive,
.ThemeIEMenuItem,.ThemeIEMenuItemHover,.ThemeIEMenuItemActive
{
    cursor: pointer;
    white-space: nowrap;
    cursor: hand;
}



Posted on March 30th, 2009 | Filed under Moved to PW | No Comments »

1) Go to the Settings for the page where you want to add the headers
2) Expand Advanced Settings
3) Put your code in the Page Header Tags field.



Posted on March 19th, 2009 | Filed under DNN DotNetNuke | No Comments »

Add

outline:none;

to body style



Posted on March 13th, 2009 | Filed under CSS | No Comments »

<!—<cfset TXTPath = ExpandPath("/client/client_pages/ArticleText/ReadReflect.txt")>
<cffile action="read"
    file="#TXTPath#"
    variable="article">
<cfif CGI.SCRIPT_NAME contains "/index.cfm">
    <cfoutput>
        <cfset articleTrunc = Left(article, 350)>
            #articleTrunc#…
        <cfset articleTrunc = ‘
                        <div class="expanderHeadText">
                            <!—<img id="imagechange" src="#application.site.PWROOT#/client/client_images/readmore.gif" alt="Expand for more info" border="0">—>
                        <div class="readmore">    <a title="show/hide" style="cursor:hand;" id="exp1088095638_link" href="#application.site.PWROOT#/client/client_pages/Read_Reflect_Pray.cfm">Read More</a></div>
                        </div>
                        <div id="exp1088095638" class="childExpander" style="display:none">
                            <div class="description">#articleTrunc#</div>       
                    </div>’>
                    #articleTrunc#
</cfoutput>

<cfelse>
<cfoutput>
<br>
<br>
<h1>Title</h1>
<img src="/client/client_images/template/ctnr_hr.gif" alt="horizontal rule">
<div id="article">#article#</div>
</cfoutput>

</cfif>—>



Posted on March 12th, 2009 | Filed under ColdFusion, PowerWeb | No Comments »

#lsnumberformat



Posted on March 12th, 2009 | Filed under CSS, PowerWeb | No Comments »

.line {border-top: 2px dotted #535152;
margin-top: 5px; }



Posted on March 10th, 2009 | Filed under CSS | No Comments »

You can add items to the list / menu select code

<form action="" method="get"><select name="DropDownList">
    <option>red</option>
</select></form>

like these:

style="background: black; color: red; text-decoration; none; border: 1px solid red;"

<form method="get" action="">
    <select name="DropDownList" style="border: 2px solid #7ed01d; width: 115px; color: #ff9d33;">
    <option>red</option>
  <option>blue</option>
 <option>green</option>
    </select>
</form>

 



Posted on March 4th, 2009 | Filed under CSS | No Comments »

Finding this code made my month!

input[type=image]{
position:relative;
top:5px;
}



Posted on March 4th, 2009 | Filed under Adobe After Effects | No Comments »

Google’s recommendation for placement of their analytics code is to always place it directly above the closing body tag. 
 
 
However Google does state an exception on the instructions for using the special pdf tracking code:
 

 

“Important: if your pages include a call to _trackPageview, _setAllowLinker _trackTrans(), your Analytics tracking code must be placed in your HTML code above any of these calls. In these cases the tracking code can be placed anywhere between the opening <body> tag and the JavaScript call. “
_trackPageviewis a part of the standard Google Analytics code so to use the PDF tracking the analytics code would have to be moved to higher up on the page.
 

 



Posted on February 25th, 2009 | Filed under Moved to PW | No Comments »