- This topic has 59 replies, 2 voices, and was last updated 10 years, 4 months ago by Sakin.
-
AuthorPosts
-
June 26, 2014 at 12:44 am #36335SakinKeymaster
@ashrafashraf: Yes now change the padding as per you need. For desktop, for example change
#site-generator { padding-top: 459px; }
to
#site-generator { padding-top: 535px; }
Similarly you can check your site and change as per you need in different media screen sizes.
June 26, 2014 at 12:48 am #36337ashrafashrafMemberYes, fixed the issue on my desktop.
But about my iphone which one must i change it the padding for it ? pleaseJune 26, 2014 at 1:06 am #36342ashrafashrafMemberHi Sakin,
There is something wrong on the footer,
the section of my power by is on the left.
and the section of my copyright is on the right.
How can i change that ? pleaseJune 26, 2014 at 8:31 pm #36460SakinKeymaster@ashrafashraf: That’s from rtl.css. So, you can add the following css to put it back.
#site-generator .powered { float: right; } #site-generator .copyright { float: left; }
June 27, 2014 at 12:01 am #36490ashrafashrafMemberThanks , I added your code, But…
Please, I have also the following code on my css:
#site-generator .copyright {
float: left !important;;
margin-right: 3%;
margin-left: 0;
text-align: left;
}
#site-generator .powered {
float: right !important;
margin-left: 3%;
margin-right: 0;
text-align: right;
}
}What must i do to fix this issue ? please
June 27, 2014 at 12:20 am #36491SakinKeymaster@ashrafashraf: You have added all those inside 767px screen. So, replace your Custom CSS
@media screen and (max-width: 767px) { .social-profile {display: none;} #site-generator .copyright, #site-generator .powered { display: inline; width: 47%; } #site-generator .powered { float: right; } #site-generator .copyright { float: left; } #site-generator .copyright { float: left !important;; margin-right: 3%; margin-left: 0; text-align: left; } #site-generator .powered { float: right !important; margin-left: 3%; margin-right: 0; text-align: right; } }
With the following css:
@media screen and (max-width: 767px) { .social-profile {display: none;} #site-generator .copyright, #site-generator .powered { display: inline; width: 47%; } #site-generator .copyright { float: left; margin-right: 3%; margin-left: 0; text-align: left; } #site-generator .powered { float: right; margin-left: 3%; margin-right: 0; text-align: right; } } #site-generator .powered { float: right; text-align: right; } #site-generator .copyright { float: left; text-align: left; }
June 27, 2014 at 12:27 am #36493ashrafashrafMemberThanks sir.
I am still have the section powered by on the left,
and the section copyright on the right.How can i make the OPPOSITE ? please
June 27, 2014 at 12:40 am #36495SakinKeymaster@ashrafashraf: Did you refresh your browser and check in as now when I check in your site. I see Powered by on right and Copyright on left. So, it’s corrected.
June 27, 2014 at 12:55 am #36505ashrafashrafMemberYes that is right.
Please how can i add some padding to each section.
What do you think i need to do more ? pleaseJune 27, 2014 at 2:53 am #36521ashrafashrafMemberCan do please check the result on your iphone ? please
Thanks
June 27, 2014 at 12:45 pm #36580ashrafashrafMemberI have the same issue on my iphone with the footer section , It is not displayed good, Please Help me to fix this issue ? thanks
June 27, 2014 at 11:42 pm #36686SakinKeymaster@ashrafashraf: I have already given you detail CSS where you can just adjust the padding as per your need. For iPhone, in the previous css you can just change the padding. Find the following previous css that I gave you and then increase as much as you need.
@media screen and (max-width: 767px) { #site-generator { padding-top: 134px; } }
June 28, 2014 at 12:59 am #36695ashrafashrafMemberThanks , I will change it .
Please can do check : http://grab.by/y92y
Can i add padding to the two sections (power by, copyright) ?please
Pleas Help!!!June 28, 2014 at 10:22 am #36742SakinKeymaster@ashrafashraf: I mean that you change like the below. Sorry we don’t be able to support at this level. For now replace your following css
@media screen and (max-width: 767px) { .social-profile {display: none;} #site-generator { padding-top: 145px; } }
With the following, where I have increased the padding top from 145px to 240px. This is all that you need to do it.
@media screen and (max-width: 767px) { .social-profile {display: none;} #site-generator { padding-top: 240px; } }
For more customization, please hire customizer at http://catchthemes.com/hire-customizer/
June 28, 2014 at 12:38 pm #36766ashrafashrafMemberThanks sir,
Please, What do you think , if we disappear these sections on the iphone only ?
And if i want to do that:
@media screen and (max-width: 767px) {
#site-generator {display: none;}}
is that better and correct?
June 29, 2014 at 12:00 am #36896SakinKeymaster@ashrafashraf: Yes that’s fine.
July 5, 2014 at 3:15 pm #38059ashrafashrafMemberHi Sakin,
I am still see the footer pat on my iphone,
Can do please check it ? and it is not organised !!!Please Help!!!
ThanksJuly 6, 2014 at 12:39 am #38090SakinKeymaster@ashrafashraf: I have already given you detail code and that you can adjust it. If not then you need to hire customizer http://catchthemes.com/hire-customizer/
July 6, 2014 at 5:35 am #38109ashrafashrafMemberI mean, I want to hide the power by and the all rights reserved parts, when i open my site on any mobile devices?
Please, How can i do that?Thanks
July 6, 2014 at 11:22 am #38133SakinKeymaster@ashrafashraf: You can add the following css in “Appearance => Theme Options => Custom CSS” box.
@media screen and (max-width: 767px) { #site-generator .copyright, #site-generator .powered { display: none; } }
-
AuthorPosts
- The topic ‘REMOVE THE padding’ is closed to new replies.