Company  |  Online Order  |  Policies  |  xBLOG  |  Help & Support  |  Contact

Entries in the ‘Web Design’ Category:

How to show only “summary” of a post in Wordpress blog?

You can “hide” part of your blog post so that only excerpts (or choice few words) are displayed on the home and archive pages. When you do this, an automatic link will be placed directly after your excerpt, pointing the reader to the full content of the post. Watch this video to learn how:

Tags: , ,

Comments (1)


The !important in CSS

When a CSS propriety is specified twice, the browser will commonly use the last one. Let’s see an example:

#main {
width:600px;
width:800px;
}
In this example the browser will assign width 800 pixels to the #main element.
The declaration !important can be used in cascading style sheets to give priority to some parameters.

#main {
width:600px !important;
width:800px;
}
In the example above the browser [...]

Tags: , ,

Leave a Comment


CSS padding problems (IE vs Firefox)

Every HTML element is essentially a box, the width of which is the total of its margin, border, padding and content area. Imagine the following CSS rule:
div {
margin: 5em;
padding: 4em;
border: 1em solid grey;
width: 30em
}
This means that each div is 50em wide in total. This amount is made up of a 30em wide content area, [...]

Tags: , ,

Comments (1)


How to disable warning message in osCommerce

How can I disable error messages or why do I get the error message though I changed right permissions to 644?
Warning: I am able to write to the configuration file: xx/xx/xx/catalog/includes/configure.php. This is a potential security risk - please set the right user permissions on this file.
Go to this file: includes/application_top.php
Then Scroll down to:
define(’WARN_CONFIG_WRITEABLE’, ‘true’);
and [...]

Tags: , ,

Comments (1)


How to make a Flash movie with a transparent background

The transparency doesn’t work in Netscape at all. Use Internet Explorer or Firefox to view transparent Flash Content.
Make sure the drawing area behind the main movie is clear of any unwanted colors, etc., which show up in the final animation.

Add the following parameter to the OBJECT tag:

<param name=”wmode” value=”transparent”>

Add the following parameter to the EMBED [...]

Tags: ,

Comments (1)