• Hi Forum,

    I’m having an issue with my site not appearing on mobile properly. It appears okay on desktop but the text is not centring on desktop. This is even more so the case on mobile – all text is to the left and images are pushed to the left also.

    I’ve tried the positioning options in typography but that doesn’t seem to help.

    I have a feeling it is due to a column issue, but I have selected single page layout and do not have any knowledge of CSS.

    I’m a basic/intermediate user of wordpress so if you could kindly bear that in mind that would be greatly appreciated. Please let me know if any additional information would help?

    Site: http://kristiangreymagic.com/
    Theme: minamaze (although same seems to occur with other themes e.g. virtue)

    Thanks a lot

Viewing 1 replies (of 1 total)
  • Hey there kgm_admin,

    Hope you’re well! 🙂

    I noticed that there is a huge padding on the right of paragraph element.

    First, I suggest you use a child theme http://codex.wordpress.org/Child_Themes or use css custom plugin like this: https://wordpress.org/plugins/simple-custom-css/ if you will customize your theme.

    Add the code in your child theme’s style.css or using the plugin mentioned above.

    p {
    	padding-right: 0!important;
    }

    It will remove the large padding in the right and it will fix the issue in mobile mode.

    Note: If you are planning on writing custom css code; As much as possible refrain from using !important! cause it may cause headache in future. 🙂

    Hope it helps! 🙂 Looking forward for your reply! 🙂

    Take care,
    Calvin

Viewing 1 replies (of 1 total)

The topic ‘Theme not responsive on mobile and text centring issues’ is closed to new replies.