- Thank you received: 0
Re: graphic n login module dsnt appear in explorer 8.0
-
-
Topic Author
- New Member
-
Less
More
14 years 4 months ago - 2 years 10 months ago #3968
by
graphic n login module dsnt appear in explorer 8.0 was created by
website: faccess. net
the login module in the left column... TVW Stylish Login Module
the login button appears for a brief second then disappears... looks like a css conflict with the template... the background color #e8e8e8 for the button in the template looks like it is overriding the display of the button...using style 4...
appears fine of course in ff, chrome, safari and opera.... as usual explorer is the red headed stepchild... any idea what i can do milos to fix this?
thanks
trey
the login module in the left column... TVW Stylish Login Module
the login button appears for a brief second then disappears... looks like a css conflict with the template... the background color #e8e8e8 for the button in the template looks like it is overriding the display of the button...using style 4...
appears fine of course in ff, chrome, safari and opera.... as usual explorer is the red headed stepchild... any idea what i can do milos to fix this?
thanks
trey
Last edit: 2 years 10 months ago by milos.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
14 years 4 months ago #3977
by ivan.milic
Replied by ivan.milic on topic Re: graphic n login module dsnt appear in explorer 8.0
You can try to fix that using IE directives to only instruct IE7 or less to use some css.
<!--[if lt IE 8]>
<style type="text/css">
.input
{...}
.input #tvwlogin
{...}
.input #tvwlogin #username
{...}
.input #tvwlogin #pass
{...}
.input #tvwlogin #rememberme
{...}
.input #tvwlogin .button
{...}
.input #tvwlogin .register
{...}
</style>
<![endif]-->
You can put that in modules/mod_login/tmpl/Default.php file just before
form tag.
<!--[if lt IE 8]>
<style type="text/css">
.input
{...}
.input #tvwlogin
{...}
.input #tvwlogin #username
{...}
.input #tvwlogin #pass
{...}
.input #tvwlogin #rememberme
{...}
.input #tvwlogin .button
{...}
.input #tvwlogin .register
{...}
</style>
<![endif]-->
You can put that in modules/mod_login/tmpl/Default.php file just before
form tag.
Please Log in to join the conversation.
-
-
Topic Author
- New Member
-
Less
More
- Thank you received: 0
14 years 4 months ago #3988
by
Replied by on topic Re: graphic n login module dsnt appear in explorer 8.0
where exactly within the document.... when i put it in right now it is completely greyed out...
thanks
trey
thanks
trey
Please Log in to join the conversation.
-
-
Topic Author
- New Member
-
Less
More
- Thank you received: 0
14 years 4 months ago #3991
by
Replied by on topic Re: graphic n login module dsnt appear in explorer 8.0
this is happening in explorer 8.0....and it ok in all the other browsers...
thanks
trey
thanks
trey
Please Log in to join the conversation.
-
-
Topic Author
- New Member
-
Less
More
- Thank you received: 0
14 years 4 months ago - 2 years 10 months ago #3999
by
Replied by on topic Re: graphic n login module dsnt appear in explorer 8.0
i put it within the login page about line# 5 before the <form action> nothing changed.... like i said previously this looks like a css conflict with the template... when i use css inspector within my firefox it pulls up as a button with null values of the template... in my case i am using style 4...
see:
now this is css from the module:
this is only happening in explorer (
... it is ok in all the other browsers...looks like the template css is overiding the css in the module...
thanks
trey
...what do i need to add to the template css for the css of the module...
see:
Code:
.button (line 159)
{
padding-top: 3px;
padding-right: 10px;
padding-bottom: 3px;
padding-left: 10px;
font-size: 13px;
}
null
.button (line 199)
{
color: #000000;
background-color: transparent;
[b][color=#880000]background-image: #ebebeb;
background-repeat: repeat;[/color][/b]
background-attachment: scroll;
background-position: 0% 0%;
position: relative;
now this is css from the module:
Code:
#tvwlogin .button (line 90)
{
display: block;
padding-top: 0pt;
padding-right: 0pt;
padding-bottom: 0pt;
padding-left: 0pt;
margin-left: 161px;
margin-top: 122px;
border-top-width: 0px;
border-right-width-value: 0px;
border-right-width-ltr-source: physical;
border-right-width-rtl-source: physical;
border-bottom-width: 0px;
border-left-width-value: 0px;
border-left-width-ltr-source: physical;
border-left-width-rtl-source: physical;
border-top-style: none;
border-right-style-value: none;
border-right-style-ltr-source: physical;
border-right-style-rtl-source: physical;
border-bottom-style: none;
border-left-style-value: none;
border-left-style-ltr-source: physical;
border-left-style-rtl-source: physical;
border-top-color: -moz-use-text-color;
border-right-color-value: -moz-use-text-color;
border-right-color-ltr-source: physical;
border-right-color-rtl-source: physical;
border-bottom-color: -moz-use-text-color;
border-left-color-value: -moz-use-text-color;
border-left-color-ltr-source: physical;
border-left-color-rtl-source: physical;
width: 52px;
height: 20px;
color: #000000;
background-color: #f8f8f8;
[b]background-image: url("login.png");[/b] [i][color=#0044ff]--- this is the graphic not being displayed.... it is under the background gradient in the null value above #ebebeb[/color][/i]
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 0% 0%;
}
this is only happening in explorer (

thanks
trey
...what do i need to add to the template css for the css of the module...
Last edit: 2 years 10 months ago by milos.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
14 years 4 months ago - 2 years 10 months ago #4001
by ivan.milic
Replied by ivan.milic on topic Re: graphic n login module dsnt appear in explorer 8.0
In attachment there is default.php file you need to change. I have put in it comments for you , so you can see where to change, (ctrl F - find "HERE!" word).File location is : modules/mod_login/tmpl/default.php.I'am not sure why button's image is not shown without full site access, so you have to experiment with that, at least you now where to make changes.
Last edit: 2 years 10 months ago by milos.
Please Log in to join the conversation.
Time to create page: 0.107 seconds