Theme4Press › Forums › evolve › Tagline Alignment › Reply To: Tagline Alignment
#17906
|
Hi,
You can use media queries. Using this article as reference. http://stephen.io/mediaqueries/
For example in iPad Portrait mode. For example, to cancel out your margin-left which you set for desktop mode, which seems to be the code that’s causing it to go left.
1 2 3 4 5 6 7 8 9 |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { /* STYLES GO HERE */ #tagline { margin-left:0px !important; } } |
You have to experiment with different media queries for each device view.
Sorry, I can only provide you with some guidance.
Thanks!
Denzel