Welcome to W3Courses

Format

Save YouTube Video in MP4 and FLV Format

You can save YouTube Video in MP4 and FLV Format from

http://www.savevid.com

Just copy the YouTube rl and paste it at savevid.com and then click on the FLV or MP4 download.

0

How to Format CCK Textboxes Exposed by Views Filter in Drupal

To change the size of the text boxes exposed by Views Filter, icnclude the following code in your style.css file of your current theme:

#edit-fieldname1
{
    width: 175px;
    height: 44px;
}

#edit-fieldname2
{
    width: 175px;
}

Change the fieldname1 and fieldname2 to the name of your fields.

0

How to format the display of Node Images module in Drupal

When you include node images, they appear somewhere on your node page. To right align the images and set a certain width of images, include the following code to style.css file of your current theme

.node_images
{
    float: right;
    margin-right: 0px;
    width: 450px;
}

0

How to Format CCK Field Display in Drupal

When you create CCK fields, they appear on your web page but not formatted the way you want. To control the formatting, include the following code in the style.css file of your current theme.

.field
{
    margin-top: 10px;
    display: table;
}

.field-label
{
    float: left;
    width: 120px;
}

.field-items
{
    float: left;
}

5
Average: 5 (1 vote)

How to Format Proximity Fields Exposed by Views Filter in Drupal

To format Proximity fields, add the following code to your style.css file of your current theme. If the change does not take affect, go to your view display page, view source and check the css classes and change the class names in the code below to match the names of your classes.

0