Author: majadc

  • Responsive images

    To create a responsive image, you need to add the max-width: 100% property to the img tag and set the width and height properties to auto. If there are no predefined values for the width and height, they can be omitted. The width of the parent container should be set in percent or can be […]

    Read more

    Posted in CSS, Snippets

  • Installing a WordPress website using SVN.

    Requirements: 1. Web server. 2. Shell access to that web server. For example ssh. 3. Server on which you want to install a WordPress website must provide a Subversion repository. I use Aptana Studio 3 with Subersion Plugin (subclipse) as an SVN client. How to install Subclipse Plugin in Aptana Studio 3

    Read more

    Posted in Notes, Wordpress

  • Installing Subversion Plugin in Aptana Studio 3

    In order to install the Subversion Plugin (subclipse) in Aptana you need to have the Aptana Studio 3 already installed. In the Aptana Studio 3 go to Help -> Install New Software…

    Read more

    Posted in Aptana Studio, Notes

  • Autocomplete WordPress for Aptana Studio 3

    Download WordPress package from wordpress.org. Unzip it in C:\Users\…\Aptana Rubles. In Aptana Studio 3 go to Preferences -> Aptana Studio -> Editors -> PHP -> Libraries.

    Read more

    Posted in Aptana Studio, Notes

  • Gradients

    The CSS gradients are types of background images and represents smooth transitions between colors.

    Read more

    Posted in CSS, Snippets

  • font

    The CSS property font is a shorthand for font-style, font-variant, font-weight, font-strech,font-size, line-height, fant-family Syntax Mandatory values: The font-size and font-family properties are required for the font shorthand to work correctly. If values for these properties are not provided, the font property will be invalid and may not display properly. Optional values: Omitting the values […]

    Read more

    Posted in CSS, CSS Reference

  • Using Sass with Aptana Studio 3

    Setting Compass with Aptana Studio 3.

    Read more

    Posted in Aptana Studio, Notes

  • tab-size

    The tab-size property sets the width of the tab character (Unicode U+0009) in a block-level element. The initial value of tab-size is 8, and this property is inherited by child elements. Normally, tab characters are converted to spaces. However, when using the tab-size property for HTML tags other than pre tag, the white-space property must […]

    Read more

    Posted in CSS, CSS Reference

  • box-shadow

    box-shadow is a CSS3 property that attaches one or more drop shadows to a box. This property applies to all elements, including the ::first-letter selector. Multiple box shadows are possible, separated by commas. The z-ordering of multiple box shadows is determined by the order they are specified in the box-shadow property, with the first specified […]

    Read more

    Posted in CSS, CSS Reference

  • Remote Debugging on Android with Chrome

    All you need to know is described on this page: Remote Debugging on Android with Chrome. I tried to set up remote debugging on my Samsung Galaxy SIII. My operating system is Windows 7. My desktop Chrome browser didn’t discover my device.

    Read more

    Posted in Notes