Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #885233

    How do I make the biggest mark on the device (Iphone7 for example).

    LINK
    How do I make the biggest mark on the device (Iphone7 for example).

    #885271

    Hey mleite1,

    I’m not quite sure I understand the issue you are having. Can you explain your concern a bit clearer?

    Best regards,
    Jordan Shannon

    #885560

    Hi Jordan. Thanks for the feedback.

    It’s simple, the logo on the device is very small. How do I explain this better? How can I make it bigger on the device?

    Access the link and check on your device what I’m saying.

    Can I use a different format for the logo on the device?

    LINK IMAGE
    https://imgur.com/WJT5u8I

    #885809

    Hi,

    Please provide a link to the page in question so we can inspect the code.

    Best regards,
    Jordan Shannon

    #885837
    #885841

    Hi,

    Try adding the following to quick css:

    @media only screen and (max-width: 767px)  {
    .responsive .logo img{
    max-height:300px!important;
    min-height:200px!important;
    width:100%!important;
    }}

    Best regards,
    Jordan Shannon

    #887527

    Jordan, the brand was deformed and misaligned with the burguer menu.

    #887618

    Hi,

    Are you able to crop the image to just around the letters?

    Best regards,
    Jordan Shannon

    #888558

    Jordan cut the image the way you asked for it and it continued to deform.

    Is there any way to load a specific logo for the device?

    #888630

    Hi,

    This can be accomplished with a bit of JQuery. Please refer to the following:

    Best regards,
    Jordan Shannon

    #890496

    Jordan, I used this code that was on the link you passed. It worked well on the device. The problem is that the brand has also changed on the desktop. How do I keep this tag on the device and keep the original on the desktop?

    CODE I USED

    function add_custom_tooltip () {
    ?>
    <script>
    jQuery (window) .load (function () {
    jQuery (‘. responsive .logo img’) .attr (‘src’, ‘http: //www.ortodontiainvisivelbahia.com.br/logo-device/EVELIN-SITE-MARCAS-DOURADA-alltype.png’);
    });
    </ script>
    <? php
    }
    add_action (‘wp_footer’, ‘add_custom_tooltip’);

    DESKTOP ORIGINAL BRAND
    http://ortodontiainvisivelbahia.com.br/oi-child/wp-content/uploads/2017/12/EVELIN-SITE-MARCAS-DOURADA.png

    #890637

    Hi,

    Adjust to this:

    function add_custom_tooltip () {
    ?>
    <script>
    jQuery (window) .load (function () {
    if (screen.width <= 767) {
    jQuery (‘. responsive .logo img’) .attr (‘src’, ‘http: //www.ortodontiainvisivelbahia.com.br/logo-device/EVELIN-SITE-MARCAS-DOURADA-alltype.png’);
    }
    });
    </ script>
    <? php
    }
    add_action (‘wp_footer’, ‘add_custom_tooltip’);

    Best regards,
    Jordan Shannon

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.