• Hi there,

    iam currently setting up a wordpress for my society and iam facing an error, that the social media icons in the header area arent displaying properly in firefox.

    In chrome and on my mobile phone chrome everything looks fine… but on firefox there arent any social icons displaying.

    on your preview page there aren’t any images too.

    do you know any possible reason for that?

    best regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author TT Themes

    (@tomastoman)

    Hi,

    please try to deactivate all your installed plugins (one after another) as there might be a plugin conflict that causes this issue. If this does not help, please post here a link to your website so I could check it.

    Best regards,
    Tomas Toman

    Thread Starter harry89

    (@harry89)

    This was a fresh installation, so no plugins installed except the hello dolly plugin.
    At one of your Preview Pages (with normal content) there is the same bug… no social icons in the header. :-/ iam just playing with the code to get the image right, but no chance to fix this.

    i can live without this (in chrome there are those icons).

    But do you have any idea how to change the displaying featured image? i want to give the image a tiny border (like those with the lightbox) and a fixed scale without destroying the aspect ratio. So cropping the image basically.

    thanks ??

    Theme Author TT Themes

    (@tomastoman)

    Hi,

    please post here a link to the Preview Page where are missing the header icons, I will check it.

    To give your featured images on the Blog page a fixed scale, please search for the following code in “content-archives.php”:

    <a href="<?php echo get_permalink(); ?>"><?php the_post_thumbnail(); ?></a>

    and edit it in this way:

    <a href="<?php echo get_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?></a>

    Then add this custom CSS into “Theme Options > Other Settings > Custom CSS”:

    #wrapper .post-entry .attachment-thumbnail {
      border: 1px solid #000000;
      display: block;
      float: left;
      height: auto;
      margin: 0 15px 5px 0;
      width: auto;
    }

    Then you can set the requested thumbnails size in “Settings > Media > Thumbnail size”. If you change the Thumbnail size, you can regenerate all the previously uploaded images using the Regenerate Thumbnails plugin.

    Best regards,
    Tomas Toman

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Social Icons not showing in Firefox’ is closed to new replies.