.Net & SharePoint '07

Technical blog for .Net and all SharePoint 2007 related Information

About the author

Me(Prince) and my wife are B.E in I.T & C.S.E respectively.  I a certified MCPD: Web from 2007 Dec. I am Intrestes in Web Application, MOSS, EPM, etc.
Now working with Deira International School, as IT Application & Help Manager. I have started my career as "Software Developer" @  REACH Sewn Technologies and Consulting Pvt. Ltd, Bangalore India from Oct 2004 to Feb 2006, then as "Web & Intranet Developer" @ Fosroc International Ltd, Dubai from April 2006 to Sep 2009.
You can catch me on mail@jpy-tech.com or mail@princepy.com. Or on 00971 - 50 - 4284530 

Google Translate

Tag cloud

Calendar

<<  May 2012  >>
MoTuWeThFrSaSu
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910

View posts in large calendar

RecentComments

Comment RSS

Google Your Location


Usefull CSS Stylings

1) UnOrdered List with Image

[b]Method 1: Universal Style[/b]

The simplest way to format your lists is to define a style which applies to all lists in the page. In the head of your web page, add the following code:

<style type="text/css">
ul { list-style-image: url("/images/arrow.gif") }
</style>

Syntax: list-style-type: <value>
Possible Values: disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none

Default Value: disc
Applies to: Elements with display value list-item
Inherited: Yes
Specifies the type of list-item marker, and is used if list-style-image is none or if image loading is turned off

Syntax: list-style-image: <value>
Possible Values: <url> | none

Default Value: one
Applies to: Elements with display value list-item
Inherited: Yes
Replaces the marker specified in the list-style-type property.

Syntax: list-style-position: <value>
Possible Values: inside | outside
Default Value: outside
Applies to: Elements with display value list-item
Inherited: Yes
Takes the value inside or outside, with outside being the default. This property determines where the marker is placed in regard to the list item. If the value inside is used, the lines will wrap under the marker instead of being indented.


Eg:

.arrow_li,
.arrow_ul li
{
    list-style-position: outside;
    list-style-image: url(image.axd?picture=/ESOLGroup/Arrow.gif);
    list-style-type: square;
}

 

2) Word-Wrap Property


You can specify either normal or break-word value with the word-wrap property. Normal means the text will extend the boundaries of the box. Break-word means the text will wrap to next line.

.break-word {
  word-wrap: break-word;
}

Without break-word

http://www.webdesignerwall.com_title_with_a_long_url_continue_here

With break-word

http://www.webdesignerwall.com_title_with_a_long_url_continue_here

3) Cross-Browser CSS Gradient

For Webkit Browsers
{
background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#000));
}

For Firefox 3.6+
{
background: -moz-linear-gradient(top,  #ccc,  #000);
}

For Internet Explorer
{
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#000000');
}

.demo_gradiant
{
background: #999; /* for non-css3 browsers */

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#000000'); /* for IE */
background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#000)); /* for webkit browsers */
background: -moz-linear-gradient(top,  #ccc,  #000); /* for firefox 3.6+ */
}

Eg:

gradient box

 

4) Links


Categories: css
Posted by Admin on Tuesday, April 20, 2010 12:08 AM
Permalink | Comments (0) | Post RSSRSS comment feed

How to customize the RSWebParts (‘Report Viewer’,’ Report Explorer’)?

Report Root Folder(%rsroot%) = "C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services"

http://localhost/reports => "C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportManager"

http://localhost/reportserver =>"C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportServer"

    * Edit Styles [%rsroot%\ReportServer\Styles]
         1. HtmlViewer.css
               1. Css Class = ".MenuBarBkGnd"
                  Type = "background-color"
         2. SP_Full.css
               1. Css Class = ".MenuBarBkGnd"
                  Type = "background-color"
         3. SP_Small.css
               1. Css Class = ".MenuBarBkGnd"
                  Type = "background-color"

    * Replace [%rsreports%\ReportManager\images\TOOLGRAD.GIF] with you image (keep imagename as "TOOLGRAD.GIF")

    * Edit Style [%rsroot%]\ReportManager\Styles]
         1. ReportingServices.css
         2. RSWebParts.css


Posted by admin on Tuesday, June 30, 2009 3:25 PM
Permalink | Comments (2) | Post RSSRSS comment feed

CSS/Image Reference Chart for SharePoint 2007

◊ CSS Reference Chart for SharePoint 2007 (Microsoft Office SharePoint Server 2007 and Windows SharePoint Services v3) Link

◊ Image Reference Guides for SharePoint 2003 Link

◊ Page CSS Element Link

◊ Master Page Element Link

◊ How to: Create a Minimal Master Page Link | DefaultPPY.master (5.45 kb)

 

 

 

 

SharePoint Tips :

  1. Hide the Site Settings Link in Portal?
    To quickly hide the Site Settings link in portal, add this to your custom style sheet:

    #SettingsOrReturnURL {display: none}


    All this does is change the display of the link itself to none.  So you aren't actually removing it from the code.

Categories: css | MOSS | WSS
Posted by admin on Sunday, June 28, 2009 3:08 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Open Source Web Design

http://www.oswd.org

http://www.styleshout.com

http://www.alistapart.com

 

Image Optimizer

FavIcon Generator

Email Riddler

.htaccess Password

.htaccess Banning

Gradient Image

Button Maker

 

Web Design Icons and Buttons


Categories: css
Posted by admin on Monday, May 18, 2009 11:11 PM
Permalink | Comments (0) | Post RSSRSS comment feed