Have some real trouble removing some text from the home page of my SharePoint site. I've been told it's a breadcrumb that needs removed and I've tried a few methods they haven't worked and I don't think it is a breadcrumb.
However whenever I open up page editor I can't seem to interact with it, needless to say this isn't my day job!
Text in question.
And this is what it looks like when I hit edit page.
You can override CSS file by adding .ms-core-pageTitle{Display:none !Important;}
https://social.technet.microsoft.com/Forums/sharepoint/en-US/47f10498-d72a-446d-9b26-840fb89f9142/how-to-hide-site-title-in-sharepoint2013?forum=sharepointgeneral
Related
I'd like to create a webpage with menus at the top, using Dreamweaver. So far the help info I have found online talks about using the "Spry" option from the "Insert" menu within Dreamweaver. But the version of Dreamweaver I have (latest downloaded from Adobe) does not have "Spry" when I go to "Insert". I found "Tabs" under "jQuery UI" under "Insert", and that looks great but when I tested it with IE, there was a pop-up "Internet Explorer restricted this webpage from running scripts or ActiveX controls" and the page looks all garbled up, unless I click "Allow blocked content". I cannot assume that end users will have the right setting on their IE to make this work and it may just look like the webpage is not well built.
Any advice on how I should proceed?
Thanks,
According to online help (https://helpx.adobe.com/dreamweaver/using/spry-widgets-general-instructions.html), Spry widgets are replaced with jQuery widgets in Dreamweaver CC and later. While you can still modify existing spry widgets on your page, you cannot add new spry widgets.
Regarding the problem of the page looking garbled up if scripts are turned off in the browser, I guess the only way around it is to code in such a way that the page degrades gracefully in browsers that don't support JavaScript.
I found a workable solution here:
http://www.elated.com/articles/javascript-tabs/
Forgive me if this is has been answered. I have looked around, but didn't find anything.
I am creating a site for non-techies and it requires them to be able to add rich text content. I have been looking at Markdown for this, and would like to use that.
I have been searching around for a nice (jquery) ui control to make editing simple, but everything I have looked at has the live preview living somewhere else on the page other than the input box. (WMD is like this, markitup, etc..)
I would like to use something that makes it feel like you are using a word processor. Like how TinyMCe does it, but running on Markdown, not HTML
Is there anything like that, or maybe somewhere that shows how to build it?
To clarify, I'm looking for an editor that makes it feel like you are typing in the live preview; not a textbox with a preview above/below.
If I get what you're looking for, then the simplest approach would be to generate HTML with TinyMCE or CKEditor, then apply something like Markdownify to the output of e.g., tinymce.getContent().
I have since found something that I love. the Pen editor on Github does just what I wanted. I am glad to see someone has taken this on
Check out Stack Edit It's a great WYSIWYG markdown editor - syncs with Google Docs, Dropbox & CouchDB, publishes to Github (and many other places), and offers easy link sharing. You can access it on their website or using the Chrome app. You can create titles and lists in the editor there, and it will show you the corresponding text in markdown format. You can then save, publish, share, or download the file.
Markdown would not be compatible with a WYSIWYG editor. Consider this sample Markdown:
Let's link to [Google][].
[Google]: http://www.google.com/
If you were making a WYSIWYG editor, what would happen after you typed [Google]? Would you see blue underlined text? Would you just see [Google] since it's not a valid hyperlink yet? What about after you type the trailing []? It's still not a fully-defined hyperlink; you can't click it, because Markdown doesn't know where it links.
And how does the user type that [Google]: http://www.google.com/ follow-up line? That line isn't displayed; it's markup; it's invisible. Where do you type invisible text into a WYSIWYG editor?
I created a few linked pages on dreamweaver. When I send them all through a zipped file to another computer to test it, the image on all pages works fine. However the spry menu does not appear. Instead, all the text from the menu appears vertically down the page, despite including all of the spry assets in the zip file.
Anybody know how I can fix this or have an idea of where i am going wrong?
If all of the menu code is appearing as a list, it means that the page is not finding the Spry CSS and/or JS files. Check the calls to those files in the HTML again.
I'm using a standard link list web part. What I want to achieve is before my users click on the link a pop-up javascript warning box will display, stating that they are leaving the domain. In regular anchor tag I would preceed the URL with javascript:ShowWarning('http://www.youtube.com');.
I've search the AllLinks table in the database but did not find the links was looking for.
Where or how are these stored?
Thanks,
Risho
Firstly, editing the SharePoint database directly is a really bad idea. You shouldn't do it unless you really, really know what you are doing, and even then you will probably break the system.
Secondly, any change made in the data will be what shows up in the editor, and I don't think the editor supports links that don't start with "http://".
A better approach is to use jquery to add the popup behaviour to the links when the page is loaded.
How do I go about changing the My Site and My Profile text on everyone's My Site within SharePoint 2007?
I can't seem to find anywhere where these are set in any of the master pages.
12\TEMPLATE\SiteTemplates\SPSPERS\default.aspx is the page where you will be able to change it. But it is not recommanded to touch this file for editing. One of the best recommaned approach to achive what you want is defined here
To solve this problem rather than create my own My Site Host as was suggested on another forum I used jQuery to find the tabs and change their name on the fly. Not the greatest fix but it works flawlessly