header_left in tablet mode

GK User
Thu May 07, 2015 1:08 pm
This question is difficult to explain. I try to explain with an image. I would like to understand how to move the item that I put through wrapper left in tablet mode
or if it works as size (try) ... as not to modify this element in tablet mode

thanks
User avatar
Expert Boarder

GK User
Mon May 11, 2015 6:31 am
You would need to use css media queries and override.css.
It allows you to create different look for different browser widths.
User avatar
Moderator

GK User
Mon May 11, 2015 12:33 pm
it's complicated? because I tried to move the item with css (override), but it damages the template ...
I wish that in tablet mode not remain that space, or, if simpler, which disappeared the title of the form on the left.

perhaps to keep the title left in tablet mode is a modification easier than you can explain me?

tnx
User avatar
Expert Boarder

GK User
Tue May 12, 2015 5:51 pm
Could you please post an url to your site?
User avatar
Moderator

GK User
Tue May 12, 2015 6:24 pm
send it in pvt with admin access

site offline
User avatar
Expert Boarder

GK User
Wed May 13, 2015 4:19 pm
The issue is because of this costom css:
Code: Select all
.csstransforms #gkHeaderLeft .header + .content {
    padding-left: 80px;
margin: -18px -27px -25px;
}

You need to add responsiveness to it by using css media queries:
Code: Select all
@media (max-width: 1024px) {
  .csstransforms #gkHeaderLeft .header + .content {
    padding-left: 18px;
  } 
}
User avatar
Moderator

GK User
Wed May 13, 2015 4:28 pm
excellent! I've tried it and works!
you are great thanks a lot
User avatar
Expert Boarder

GK User
Thu May 14, 2015 7:08 pm
maybe it is not all right ...
perhaps some conflict with my override.css? I don't know, but now gkHeaderRight is misaligned in desktop mode ...

the address and data access to the site are the same that I have already given in pvt
User avatar
Expert Boarder

GK User
Sun May 17, 2015 9:38 am
You need to remove additional paragraph element from your video module (do it with tinyMCE disabled).
User avatar
Moderator

GK User
Mon May 18, 2015 5:04 pm
there was a <p> ... </p> in module position that probably it was added from the editor its own
I was looking for the problem in override.css ...

now is ok tnx
User avatar
Expert Boarder

GK User
Thu May 21, 2015 6:43 pm
Exactly.
If you have any additional questions regarding this topic, please let me know.
User avatar
Moderator


cron