Okay
  Public Ticket #196330
Bugs 'n' Stuff
Closed

Comments

  • Sergey started the conversation

    Hi Djwd. On the past month I've seen some minor bugs.

    Here is the list:

    1: On page with search results, some of post previews looks distortioned ( http://m-network.ru/?s=android ) ( http://i.imgur.com/svAyiKr.jpg )

    2: I wasn't appreciated with the default font size, and with your's help I'd managed to change it with custom CSS code:

    .article-content-wrapper p, 
    .article-content-wrapper ul li {font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    }

    But, for some reason, if I use Visual Composer to create a post, size of font on the homepage don't changes( http://i.imgur.com/fLMm8k0.jpg )

    ______________________

    Some questions:

    I've found code of share buttons block in content-single.php, here it is:

    <?php //Social Share Links
    			$social_multicheck = of_get_option('pm_social_share');
    			
    			if ($social_multicheck['twitter_share'] == true OR $social_multicheck['fb_share'] == true OR $social_multicheck['google_share'] == true OR $social_multicheck['linkedin_share'] == true OR $social_multicheck['pinit_share'] == true OR $social_multicheck['stumble_share'] == true)  {
    				echo '<hr /><ul class="social-share">';
    				echo get_template_part( 'partials/part', 'social-share' );
    				echo '</ul>';
    			} ?>

    Can you tell me, where i need to insert the code to have social buttons on homepage? ( http://i.imgur.com/J3mGzk1.jpg )

    2: Is Header logo Retina-ready? If i will insert [email protected], will it look unpixelized on Retina devices? (http://i.imgur.com/lhdd4ge.png )

    3: PowerMag is responsible theme, it works on on both PC and mobile devices. On devices with small screen, I can find sidebar widgets under main content, and after it, 3-colomn footer. How can I make them disappear on smartphones? ( http://i.imgur.com/LQEn7Tf.png )

    4: how can i disable sticky navigation menu on PC with small screens? ( http://i.imgur.com/uHyRzbj.png )

  •  93
    djwd replied

    Hi there,

    Thanks for your feedback, although those are more personal customization requests than bugs, which unfortunately aren't covered by regular support. I'll try to help the best I can:

    1. That depends on the image aspect ratio, if it's not wide enough to cover the block you'd need to upload a bigger image or crop it somehow to make the aspect ratio match with the block.

    2. Try by adding the !important declaration as so:
     

    .article-content-wrapper p, 
    .article-content-wrapper ul li {font-size: 14px;
    line-height: 20px!important;
    margin-bottom: 10px!important;
    }

     

    ----------------------------------------------

     

    2. Yes it should work if you place the image in the same exact folder of the original logo image.

    3 & 4: Those are personal customizations I could help on a freelance basis if you want as they're not very quick, you might could also consider seeking for some help on Envato studios

    Regards
    djwd

    Regards
    djwd

  • Sergey replied

    Thanks for your responce!

    1: Some images displays distorted only in search results ( http://i.imgur.com/U1wHIka.jpg ), so, I guess, images big enough.
    2:  !important declaration made no difference, font is still the same 12px.

    ____

    2: Thanks! 

    3: I think you're right, as said on main page, such issues are not covered by regular support. I'll try something by myself. 

  •  93
    djwd replied

    1. On that page, the pic is 660x390. With your setup the blog entry is 770px wide, you could might fix it with some custom CSS as 

    .img-frame img {
    min-width: 100%;
    }

    but it will only stretch the image making it look pixellated, I still suggest to search/create bigger images.

    2. I missed it in the font-size property, re-try:

    .article-content-wrapper p, 
    .article-content-wrapper ul li {
    
    font-size: 14px!important;
    line-height: 20px!important;
    margin-bottom: 10px!important;
    
    }

    Regards
    djwd

    Regards
    djwd

  • Sergey replied

    1: Thanks! 

    2: Still have no luck. I've searched for clues in sourse code of page, and I found something interesting. If post was created in Visual Composer, the text comes without <p> </p>.

    (First screenshot - without VC)

    (Second - Visual Composer)

  •  93
    djwd replied

    That's why the CSS doesn't target the text then. I have no power over the VC output, you might should use different block elements or alter your CSS to target all the article content.

    Regards
    djwd

    Regards
    djwd

  • Sergey replied

    Sorry for late responce, some personal issues.

    The problem can be semi-resolved with this code:

    .entry-content  {font-size: 14px!important;
    line-height: 20px!important;
    margin-bottom: 10px!important;
    }

    It's upscales the font, but blank space is still on the top. 

  •  93
    djwd replied

    From the screenshot code there seem to be an empty row at the very top of the article

    Regards
    djwd

  • Sergey replied

    Nope, dispite the fact that my Visual Composer is broken ( WP 3.9 plugin miscompatibility, you know) I'm pretty sure that the problem is not in the empty row at the top. 

  •  93
    djwd replied

    Is this still happening after the update?

    Inspecting the issue with Chrome inspector you can see there is an empty div with a margin-bottom of 35px, hence the empty space at the top. Screenshot attached.

    I honestly don't know why it's there, you might want to provide admin access so I can have a deeper look as I can't replicate it.

    Regards
    djwd

    Regards
    djwd

  • Sergey replied

    Yes, it's still happening after update ( by the way, 1.7.2 fixed color corners only if sticky navigation is on, and it hadn't fixed issue with VC properly. So, that's the reason I've downgraded back to WP 3.8.3 and PowerMag 1.7.1)

     

  •   Sergey replied privately
  •  93
    djwd replied

    Sorry I forgot the screenshot! :/ Attached now.

    By the way I just noticed that is happening only for a specific posts and not to all of them, so the problem must be related to the post itself and can't be considered a bug, I suggest to just create a new one (or switch to HTML view where you'll probably find some empty tags to delete)

    I'll test the other things you mentioned now. Could you please explain what do you mean by "it hadn't fixed issue with VC properly."

    Thanks for your feedback.

    Regards
    djwd

    Regards
    djwd

  • Sergey replied
    By the way I just noticed that is happening only for a specific posts and not to all of them

    The Nokia 225 post is the only post that was created with VC. I've  just created another one, and blank space is still there. 

     Could you please explain what do you mean by "it hadn't fixed issue with VC properly."

    I'll backup now and after that screenshot the thing I'm talking about, ok?

  • Sergey replied
    Could you please explain what do you mean by "it hadn't fixed issue with VC properly."

    Oooops, I'm sorry for concerning you, VC works perfectly, I'd messed up :D

  • Sergey replied

    Hi, 

    I still have the problem with the blank space.

    In my previous message I was talking about updated version of the plugin.

     

  • Sergey replied

    ...

    Hello?

  •  93
    djwd replied

    Hi there, apolologies for the delay, I do not usually work on week-ends.

    I tried to login again to set up a new post but the visual composer button isn't showing up, I couldn't access the plugin's list either to check if was active and installed correctly, so I weren't able to debug the issue. Do you know the reason of this? 

    Regards
    djwd

    Regards
    djwd

  • Sergey replied

    Sorry, it was my fault. 

    Now everything fixed, visual composer button is on the place.

    Now you can do what you want.

     

  •  93
    djwd replied

    When creating posts with the VC, you shouldn't use the <--more--> tag for the reasons explained on this FAQ. Instead you should be using the manual excerpt textarea and the Auto Trim option in Theme Options > Basic Settings, this way the shortcode doesn't break and the space won't be there.

    Hope that helps
    djwd
     

    Regards
    djwd

  • Sergey replied

    Sorry for late response, some personal issues.

    Thanks a lot for your assistance!