Home > CMS- Content Management System (Page 12)

Problem with ampersand(“&”) in anchor tags.

There is a common error occurs when including a URL which contains an ampersand ("&"):<!-- This is invalid! --> <a href="foo.cgi?chapter=1&section=2&copy=3&lang=en">...</a>This example generates an error for "unknown entity section" because the "&" is assumed to begin an entity reference. Browsers often recover safely from this kind of error, but real problems do occur in some

This Article is TAGGED in , . Read more

How to add CSS link to master page, page layout and page in Sharepoint publishing sites

How to add CSS link reference to Master Page, Page Layout, Page in a Sharepoint Publishing site?1. Master Page: Add the following code inside <head> tags[crayon-6766f889111a9345986388/]2. Page Layout:Add below code after <!--ME:</Publishing:EditModePanel>--> tag in your Page Layout[crayon-6766f889111ad319053340/]3. Pages: Add below code after <!--MS:<asp:ContentPlaceHolder id="PlaceHolderAdditionalPageHead" runat="server">--> tag in Page[crayon-6766f889111af031492685/]  

This Article is TAGGED in , , , , , . Read more

How to hide the folder from user using SharePoint Permissions

Select the folder to which you want to hide from other usersClick on the “…” next to the folder nameClick on the “…” under the folder details popupClick on “Shared with”Click on Advanced linkClick on Stop Inheriting Permission under Permission from SP RibbonSelect all the user to which you want

This Article is TAGGED in , , , . Read more

WordPress – Jquery get dynamic urls(admin_url, template_directory)

WordPress provides a series of methods and global variables for getting the current url, template directory, plugin directory, includes directory, admin directory that saves us from using absolute paths. On the other hand JQuery under wordpress does not include such urls so we end up using absolute urls. A workaround for this

This Article is TAGGED in , , , . Read more

WordPress SEO – Categories and Tags

What are WordPress Categories?Categories in a post organizes a post into a section of posts that share a context. For ex. Technical, Psychology, Medical. All posts that talk about WordPress will belong to category Technical, WordPress, WordPress Multisite. What are WordPress Tags?Tags in a post are words or phrases that describe the content

This Article is TAGGED in , , , , , . Read more

A checklist for testing WordPress websites

It’s worth bearing in mind that testing a WordPress website does not mean testing every single piece of functionality. It is often assumed that, unless customizations have been made, that core functionality should work. As an example, we wouldn’t normally test the full capability and functionality of a login screen, but we may

This Article is TAGGED in , . Read more

IE-8 Border Radius

How to use border radius for IE-8?HTMLWe can use the ie-css3 file which is a .htc(HTML Component file) file. Just put the file in root folder and can be used as follows: div { height: 100px; width: 100px; -webkit-border-radius: 10px ; -moz-border-radius: 10px ; border-radius: 10px ; behavior: url('ie-css3.htc'); background-color: #0072AE; background: #0072ae; /* Old browsers */ }  Note: Please

This Article is TAGGED in , , , , , . Read more