Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #103060
    Panopano
    Participant

    Hello,
    I’d like to remove white borders around content on my home and all other pages.
    What I’d like to achieve is uniform black.
    Regards
    Olaf

    https://panopano.pl

    #103085
    Mahesh
    Participant

    @panopano: Have you resolved the issue? I checked your site and didn’t find any white border around the content on your site.

    Regards,
    Mahesh

    #103224
    Panopano
    Participant

    Hi Mahesh,
    I got rid of borders using Stylizer 6 demo 🙂 but would love to now CSS option.
    Btw. is it possible to use svg logo, and make it size responsive ?

    Regards
    Olaf

    #103233
    Mahesh
    Participant

    @panopano: Yes, you can use SVG logo. And let me know if you want help with Custom CSS.

    Regards,
    Mahesh

    #103286
    Panopano
    Participant

    Hi,
    thanks for prompt replay.
    Yes, I need help with custom CSS.
    1. Border colors around text area.
    2. How to use svg logo.
    3. How to responsively scale logo (it’s too big on smartphones)
    Regards,
    Olaf

    #103318
    Mahesh
    Participant

    @panopano:
    1. Border colors around text area: Checked your site, cannot find any borders. Let me know further.
    2. How to use SVG logo:
    For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following code:

    function create_child_cc_mime_types($mimes) {
      $mimes['svg'] = 'image/svg+xml';
      return $mimes;
    }
    add_filter('upload_mimes', 'create_child_cc_mime_types');

    3: How to responsively scale logo (it’s too big on smartphones):
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (max-width: 480px) {
    	.site-logo .custom-logo {
    		max-width: 100px;
    	}
    }

    Regards,
    Mahesh

    #103731
    Panopano
    Participant

    Hi Mahesh,
    sorry for late replay.
    Thank you for your support 🙂

    Regards
    Olaf

    #103757
    Mahesh
    Participant

    @panopano: Thank you for your appreciation. If you like my support and Create theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/create?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘White borders’ is closed to new replies.