- This topic is empty.
-
AuthorPosts
-
August 18, 2013 at 2:25 pm #147287
stratost
ParticipantI have a strange problem with my website appearance in chrome and only for my resolution/screen 1280×1024.
The links under the contact tab move a bit on hover, if remove the :hover colour its ok. Also it appears on textfields under the contact tab too, when i click in textfields they move a bit also and on the last thumbnails (of each row) under the portfolio section, when i hover them for first time.
You can test it on http://stratost.gr/ under the contact tab and take a look at this screenshot i have uploaded to dropbox to undestand what i mean https://dl.dropboxusercontent.com/u/49493396/screen.jpg
ps. on site is playing background music, you can pause it by clicking the pause button. Thanks.
August 18, 2013 at 2:33 pm #147290Paulie_D
Memberps. on site is playing background music, you can pause it by clicking the pause button.
You had me until I saw this.
August 18, 2013 at 2:41 pm #147292stratost
ParticipantWhats your problem? …and why you answered about that? If you don’t know how to solve my problem its ok man… i think its not necessary to post something… just to show us your answer.
August 19, 2013 at 3:49 am #147352stratost
ParticipantAny expert on css at this site to help me? I have disabled the audio.
August 19, 2013 at 3:58 am #147353Paulie_D
MemberI’m not seeing any movement in the link on hover although I do see the ‘inset’ thing you showed in the picture.
One thing which is probably unrelated:
This is your CSS…it has a repetition and a missing semi-colon
a:hover { color: #FFF <=== here outline: none; color: #FFF; }
I’ll keep looking
August 19, 2013 at 4:00 am #147354Paulie_D
MemberI’m not sure but is it usual to wrap form elements in paragraph tags?….I guess there is nothing wrong with it but I believe that it’s more common to use divs.
Again, possibly unrelated…I’m clutching at straws at the moment.
August 19, 2013 at 4:57 am #147358stratost
ParticipantThank you for your note @Paulie_D , although nothing has changed. About form elements, …my friend/programmer has done it so i think its ok.
If you know someone else who could help me/us with this bug too, …could you ask him please? :)
August 19, 2013 at 9:25 pm #147479stratost
ParticipantHi Mr @Paulie_D you are the only you had tried solve my problem. Any new ideas? I think it has to do with dimensions because if you open inspector or make zoom in/out the problem dissapears. But the problem with hover word “here” it’s about css for sure as if I delete the hover colour they don’t move on over.
August 20, 2013 at 2:45 am #147503Paulie_D
MemberThe dimensions of the link do not change on hover (29px x 16px). I suspect it’s just an optical illusion.
As for the textarea I don’t know if this is responsible but you might try removing it as I don’t think it’s doing anything.
input, textarea { outline: none; -webkit-appearance: none; -moz-appearance: none; }
August 21, 2013 at 2:19 pm #147754stratost
ParticipantHi @Paulie_D i removed this too but nothing happened again. I had added this code exactly for my problem :)
Anyway, thank you for your efforts. It seems to be easier to find someone who can fix chrome than my site’s weird issue. :)
August 21, 2013 at 10:44 pm #147771gowda24
ParticipantHi Stratost,
Add clear div above the
<
div class=”content-bottom”> as below
<div style="clear:both"></div>
Also change the content-bottom css to
.content-bottom { position: fixed; bottom: 100px; left: 77.5%; height: 50px; }
August 22, 2013 at 4:51 am #147798stratost
ParticipantHello @gowda24, i did what you said me, but nothing happened :(
(i also uploaded the changes) but thank you for your reply!August 22, 2013 at 5:10 am #147804Paulie_D
MemberTwo things to try (and I have no idea whether they will work).
Firstly, the box is not , in fact, a textfield (although that’s how you have it set up)…wht not just change it to an
<input type="email" name="email" required>
?Secondly, since it appears that the issue ‘goes away’ when the field receives focus why not add the
autofocus
attribute (whether you change it to an email field or not).So…
<input type="email" name="email" required autofocus="autofocus">
August 22, 2013 at 5:25 am #147805stratost
Participant:( Thank you @Paulie_D i tried what you said. :( again i’ll say that something with dimensions has the problem as it disappears when i zoom in or out :(
image here: https://dl.dropboxusercontent.com/u/49493396/01.jpg
and again thank you for looking on it :)
August 22, 2013 at 7:15 am #147813Senff
ParticipantI think it’s just some rendering bug in Chrome that has to do with the fact that your DIV is being horizontally moved from right (off-screen) into the middle, something like that.
-
AuthorPosts
- The forum ‘CSS’ is closed to new topics and replies.