jd_boss_hogg
Junior Member
Posts: 9
Registered: 12/13/2007
Member Is Offline
|
| posted on 12/17/2007 at 09:18 AM |
|
|
css conflict
I have a css conflict - the menu's screw up graphicaly when using the gold menau product, but work fine in the free version. I think they are
conflicting with some paramaters in my other style sheet, although i can't see anything obvious.
I tried emailing the data files as examples, but the email just bounces. I also tried to 'submit a ticket', but this just takes me to this forum.
Can you please let me know ho i can resolve this problem?
Kind regards....
|
|
|
tigra
Administrator
Posts: 1869
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 12/17/2007 at 04:28 PM |
|
|
Email us the link to your page and we'll take a look. It sounds like you have table properties defined globally for the whole page. Tigra Menu GOLD
uses the table (free version doesn't).
|
|
|
jd_boss_hogg
Junior Member
Posts: 9
Registered: 12/13/2007
Member Is Offline
|
| posted on 12/18/2007 at 07:41 AM |
|
|
global properties
Yes, i'm guessing that their are some global properties, because the first part of the style sheet calls them 'constants'. These are:
/*††††††††††††††††††-CONSTANT-††††††††††††††††††††††††*/
body, form, input, textarea, select, td, ul {
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
}
body {
}
table {
border-collapse:collapse;
border:0px;
padding:0px 0px 0px 0px;
width:100%;
}
td {
font:normal 10px Tahoma, Arial;
vertical-align:top;
line-height:13px;
color:#4a5054;
}
input, textarea, select{
font:normal 10px Tahoma;
padding:1px 0px 0px 4px;
vertical-align:middle;
color:#4a5054;
}
ul {list-style:none;}
br {line-height:0px;}
img {border:0px;}
/*____________________________________________________*/
I know nothing about CSS by the way!
|
|
|
tigra
Administrator
Posts: 1869
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 12/18/2007 at 08:02 PM |
|
|
it's pretty brutal. modify it as follows:
| Code: |
body, form, input, textarea, select, ul {
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
}
input, textarea, select{
font:normal 10px Tahoma;
padding:1px 0px 0px 4px;
vertical-align:middle;
color:#4a5054;
}
ul {list-style:none;}
br {line-height:0px;}
img {border:0px;}
|
If there is a need to modify appearance of some tables this should be done individually (via id) or within the group (via class).
|
|
|
jd_boss_hogg
Junior Member
Posts: 9
Registered: 12/13/2007
Member Is Offline
|
| posted on 12/19/2007 at 03:58 PM |
|
|
thanks
After quite a few 'painful' hours, i'm at least starting to understand css a little more, and can now see with your explanation what was
happening.
style sheets now fixed.
thanks again !
|
|
|