I copy and pasted your statement into phpmyadmin and it ran without error.
I am using phpmyadmin 3.3.9
What version are you using? Are you still receiving this error?
User Profile
Collapse
-
Whats happening here is called "collapsing margins". If the div of class "marked" were to have padding or a border the margins of .marked p would be applied within the div. However due to collapsing margins the div and the paragraph share the margin.
Collapsing MarginsLeave a comment:
-
The border conflict resolution solves the situation of having two neighbouring elements, one with a defined border style and another with a border style of none with border collapse set to collapse. In this case the border style none would be over written by the neighbouring elements border. Setting the value to hidden instead of none would ensure that no border be placed around the element.
Here is a link that may explain more clearly...Leave a comment:
-
There is no visual difference.
W3Schools defines the "hidden" value for the border-style property as "The same as "none", except in border conflict resolution for table elements"Leave a comment:
-
1) No there isn't actually a small caps version of the font. Any font can be renedered in small caps because it essentially is only using uppercase letters with a smaller font size.
Here is a small example. Run this in firefox.
Code:<!doctype html> <html> <head> <title>Example</title> </head> <body> <p style="font-size:14px;font-variant:small-caps;font-family:Tahoma;">This
Leave a comment:
-
As far as I know this is handled by the browser. The lowercase letters are converted to uppercase with a smaller font size.Leave a comment:
-
Inline elements take up only as much space as necessary and do not have line breaks before or after.Leave a comment:
-
Do you have a link to the project so I can see what's going on?Leave a comment:
-
Looks like you are using javascript to show/hide layers. On the first tab you have used onmouseover while all the others use onclick.
Try changing the onclick to onmouseover for the rest of the tabs.Leave a comment:
-
Code:#nav li:hover a { background-color:#A5A0A8; font-weight:bold; color:White; display:block; }
display:block;
fixes this and expands the clickable area.Leave a comment:
-
Height gives an element a fixed height.
Max-height gives an element with variable height a cut off point. This will allow an element to expand in height until it reaches the value given.
The examples you provided both have content that exceeds the height given and overflows the element. Rendering them both the same.
Width and max-width function the same way.Last edited by JKing; May 30 '11, 08:18 PM.Leave a comment:
-
This is likely because allow_url_fopen and allow_url_inclu de are set to off. This is default in recent versions of PHP.
The reason for it being turned off is that it can cause a major security issue by allowing remote file inclusion.Leave a comment:
-
Start by cutting out the images you will need from the PSD. For gradients and repeating backgrounds it is usually best to cut the smallest possible image and then repeat it using css.
Using the text tool you can get almost all the values you will need to style your text, such as color, font size, font family, font weight and line height.Leave a comment:
-
Code:SELECT * FROM table_name WHERE `allgenreid` = $id
Leave a comment:
-
Hello,
If you access the JSON object like it is an associative array you can work around this.
Code:<html> <head> <script language="JavaScript"> var o={ "parent-object": { "child-object01": { "name": "Anne" }, "child-object02": { "name": "John"
Leave a comment:
-
In javascript, having a variable/property with a '-' is illegal as it is interpreted as mathematical operation.
The proper syntax for the z-index property is as follows:
Code:this.layer.style.zIndex = 200;
Leave a comment:
-
Throw some back ticks around desc and try again. DESC is a reserved word.
Here is a link if you want some more information on reserved words/keywords in mysql: MySQL Reserved WordsLeave a comment:
-
Without some more information I think anything would just be a wild guess.Leave a comment:
-
You have a large top margin on your footer. Also the clearing div in between the content and footer is taking up about 20px; You may just want to add clear:both to your footer's css to avoid the extra div.Leave a comment:
-
Do you have tabs and or white space in your code? Specifically afterwrap="VIRTUAL">
Try formatting it all on one line.
Code:<textarea name="CNTNOTES" id="CNTNOTES" rows="10" cols="80" onChange="DataChanged();" wrap="VIRTUAL"><?php echo ($loadData) ? $c["CNTNOTES"] :""; ?></textarea>
Leave a comment:
No activity results to display
Show More
Leave a comment: