Viewing 20 posts - 41 through 60 (of 60 total)
  • Author
    Posts
  • #36335
    Sakin
    Keymaster

    @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.

    #36337
    ashrafashraf
    Member

    Yes, fixed the issue on my desktop.
    But about my iphone which one must i change it the padding for it ? please

    #36342
    ashrafashraf
    Member

    Hi 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 ? please

    #36460
    Sakin
    Keymaster

    @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; }
    #36490
    ashrafashraf
    Member

    Thanks , 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

    #36491
    Sakin
    Keymaster

    @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; }
    #36493
    ashrafashraf
    Member

    Thanks 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

    #36495
    Sakin
    Keymaster

    @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.

    #36505
    ashrafashraf
    Member

    Yes that is right.
    Please how can i add some padding to each section.
    What do you think i need to do more ? please

    #36521
    ashrafashraf
    Member

    Can do please check the result on your iphone ? please

    Thanks

    #36580
    ashrafashraf
    Member

    I have the same issue on my iphone with the footer section , It is not displayed good, Please Help me to fix this issue ? thanks

    #36686
    Sakin
    Keymaster

    @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; }
    }
    #36695
    ashrafashraf
    Member

    Thanks , 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!!!

    #36742
    Sakin
    Keymaster

    @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/

    #36766
    ashrafashraf
    Member

    Thanks 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?

    #36896
    Sakin
    Keymaster

    @ashrafashraf: Yes that’s fine.

    #38059
    ashrafashraf
    Member

    Hi Sakin,
    I am still see the footer pat on my iphone,
    Can do please check it ? and it is not organised !!!

    Please Help!!!
    Thanks

    #38090
    Sakin
    Keymaster

    @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/

    #38109
    ashrafashraf
    Member

    I 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

    #38133
    Sakin
    Keymaster

    @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;
        }
    }
Viewing 20 posts - 41 through 60 (of 60 total)
  • The topic ‘REMOVE THE padding’ is closed to new replies.