Hi, I am trying to align the Header text from .gk-header1 p inside the white board that's held by my picture male model. I just can't do it! I've tried for about 4 hours. I have learned a lot, but now I need help.
URL: http://www.quebecguitare.ca/
Could you please provide the @media CSS for all resolution in order to have the text at the right place?
320 x 480
480 x 800
640 x 960
768 x 1280
1024 x 768
1366 x 768
1280x 800
1366x 768
1280x 1024
1680x 1050
The text is the following:
- Code: Select all
Nous offrons des cours de guitare privés avec suivi en ligne. Visitez notre site pour plus d'informations. Vous pouvez aussi nous contacter via le formulaire d'admission au bas de cette page ou par téléphone à Québec.
So far I have used the following CSS variation (please use as a reference with the color and text shadow:
- Code: Select all
@media (max-width : 1024px) {
.gk-header1 p {
color: #000000;
font-size: 10px;
line-height: 1.8;
margin: 0;
position: absolute;
z-index: 1;
right: 50px;
text-shadow: 2px 2px 7px rgba(150, 150, 150, 1);
}
}
I have disabled the text .gk-header1 p in the override in the mean time because this is a production site. But once you start working just get rid of the code used to disable it in override:
- Code: Select all
/* temporary disable for GAVICK Tech Team */
@media (max-width : 3000px) {
.gk-header1 p {
display: none;
}
}