cewp

Removing scrollbars from Content Editor/Page Viewer Webpart

I am trying to display an HTML page inside another SharePoint webpart page. I used the Out-of-the-box page viewer webpart, but the page viewer webpart displays a disabled scrollbar inside it. I also tried using a content editor webpart with an IFRAME tag in it, but still it didnt't work. This is the code i used in the content editor w...

SharePoint 2007 popup rich text editor displays corporate logo from master page - how can I remove this?

Hi I am currently having problems with attempting to style the HTML rich text editor in our MOSS 2007 site definition. I have specified a corporate logo inline on a custom master page in the body tag as follows: <%@Master language="C#"%> <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microso...

Text replace with Jquery

I have to replace Text inside HTML. When I looked ViewSource of the page I found this html tag. Now I need to replace text "Respuesta" with "Responder". I am using SharePoint CEWP webpart for this. What is the code I need write to replace this text? <div><a id="ReplyLink3" href="" ONCLICK="javascript:GoToPage('');return false;" target="...

dynamically insert javascript into <head> tag.

I am using CEWP (webpart) and putting this code in there. But this code is not going inside <head> tag. I need to insert this code in <head> tag, <script src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt; <script type="text/javascript"> $("*").each(function () { if ($(this).children().length == 0) { $(this).text($(this).t...

Using JQuery to enlarge the text input boxes in Sharepoint 2007 Blog forms

I have a site set up as a Blog Template. I want to use JQuery to expand the size of the text boxes for blog posts in both Viewing and Edit mode (and new mode). Viewing mode is easy. I edited /Lists/Posts/Post.aspx and added a CEWP containing a reference to Jquery and Code: jQuery('.ms-PostWrapper').width(800); I tried to do the same th...