1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-31 18:11:56 +02:00

BS4 img-fluid

This commit is contained in:
Cameron
2017-01-20 10:40:05 -08:00
parent 4e2a1026eb
commit d5af3b9246
17 changed files with 28 additions and 28 deletions

View File

@@ -173,7 +173,7 @@ class siteinfo_shortcodes // must match the folder name of the plugin.
$dimensions = getimagesize($path);
}
$opts = array('alt'=>SITENAME, 'class'=>'logo img-responsive');
$opts = array('alt'=>SITENAME, 'class'=>'logo img-responsive img-fluid');
if(!empty($dimensions[0]))
{

View File

@@ -20,7 +20,7 @@ if (!defined('e107_INIT')) { exit; }
$text = "
<div id='powered-by-menu' class='text-center'>
<a href='http://e107.org' rel='external'>
<img class='img-responsive' src='".e_IMAGE_ABS."admin_images/credits_logo.png' alt='e107' style='max-width:100%' />
<img class='img-responsive img-fluid' src='".e_IMAGE_ABS."admin_images/credits_logo.png' alt='e107' style='max-width:100%' />
</a>
</div>
";