Font very big in chrome - Need help please.

For support and discussion related to templates, themes, and imagesets in phpBB 3.0.
Scam Warning
Locked
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Font very big in chrome - Need help please.

Post by ibelphegor »

In my site the Font size is OK in FF And IE but in Chrome is very big..
Someone can tell me how to make it smaller?

parrots forum

Thanks.
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: Font very big in chrome - Need help please.

Post by PlanetStyles.net »

Can you post the contents of your overall_header.html file please?
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Re: Font very big in chrome - Need help please.

Post by ibelphegor »

Thanks for your help

Code: Select all

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="content-language" content="{S_USER_LANG}" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="resource-type" content="document" />
<meta name="distribution" content="global" />
<meta name="copyright" content="2002-2006 phpBB Group" />
<meta name="keywords" content="{PAGE_KEYWORDS}" />
<meta name="description" content="{PAGE_DESCRIPTION}" />


{META}
<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>
<!-- // MOD : MSSTI RSS Feeds (V1.0.9) - Start-->
<!-- IF S_ENABLE_FEEDS -->
<link rel="alternate" type="application/rss+xml" title="{L_RSS_FEEDS} - {SITENAME}" href="{U_RSS}" />
<!-- IF S_ENABLE_FEEDS_NEWS --><link rel="alternate" type="application/rss+xml" title="{L_RSS_FEEDS} - {L_RSS_NEWS}" href="{U_RSS}?mode=news" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_FORUMS --><link rel="alternate" type="application/rss+xml" title="{L_RSS_FEEDS} - {L_ALL_FORUMS}" href="{U_RSS}?mode=forums" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_THREADS --><link rel="alternate" type="application/rss+xml" title="{L_RSS_FEEDS} - {L_ALL_TOPICS}" href="{U_RSS}?mode=topics" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_POSTS --><link rel="alternate" type="application/rss+xml" title="{L_RSS_FEEDS} - {L_ALL_POSTS}" href="{U_RSS}?mode=posts" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_EGOSEARCH && S_USER_LOGGED_IN --><link rel="alternate" type="application/rss+xml" title="{L_RSS_FEEDS} - {L_YOUR_POSTS}" href="{U_RSS}?mode=egosearch" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_FORUM && S_FORUM_ID --><link rel="alternate" type="application/rss+xml" title="{L_RSS_FEEDS} - {L_FORUM} {FORUM_NAME}" href="{U_RSS}?f={S_FORUM_ID}" /><!-- ENDIF -->
<!-- IF S_ENABLE_FEEDS_THREAD && S_TOPIC_ID --><link rel="alternate" type="application/rss+xml" title="{L_RSS_FEEDS} - {L_TOPIC} {TOPIC_TITLE}" href="{U_RSS}?f={S_FORUM_ID}&t={S_TOPIC_ID}" /><!-- ENDIF -->
<!-- ENDIF -->
<!-- // MOD : MSSTI RSS Feeds (V1.0.9) - End -->

<link rel="Shortcut Icon" href="/favicon.ico">
<link rel="stylesheet" href="{T_STYLESHEET_LINK}" type="text/css" />
<link rel="stylesheet" type="text/css" href="{T_THEME_PATH}/highslide/highslide.css" /> 
<link rel="search" type="application/opensearchdescription+xml" title="{SITENAME}" href="phpBBopensearch.php" /><!--modd for opensearch-->
<!-- INCLUDE prime_show_deleted_post.html -->
<script type="text/javascript">
// <![CDATA[
/*
<!-- IF S_USER_PM_POPUP -->
	if ({S_NEW_PM})
	{
	popup('{UA_POPUP_PM}', 400, 225, '_phpbbprivmsg');
	}
<!-- ENDIF -->*/


function popup(url, width, height, name)
{
	if (!name)
	{
		name = '_popup';
	}

	window.open(url.replace(/&/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes,width=' + width);
	return false;
}

function jumpto()
{
	var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
	var perpage = '{PER_PAGE}';
	var base_url = '{A_BASE_URL}';

	if (page !== null && !isNaN(page) && page > 0)
	{
		document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * perpage);
	}
}

/**
* Find a member
*/
function find_username(url)
{
	popup(url, 760, 570, '_usersearch');
	return false;
}

/**
* Mark/unmark checklist
* id = ID of parent container, name = name prefix, state = state [true/false]
*/
function marklist(id, name, state)
{
	var parent = document.getElementById(id);
	if (!parent)
	{
		eval('parent = document.' + id);
	}

	if (!parent)
	{
		return;
	}

	var rb = parent.getElementsByTagName('input');
	
	for (var r = 0; r < rb.length; r++)
	{
		if (rb[r].name.substr(0, name.length) == name)
		{
			rb[r].checked = state;
		}
	}
}

<!-- IF ._file -->

	/**
	* Play quicktime file by determining it's width/height
	* from the displayed rectangle area
	*
	* Only defined if there is a file block present.
	*/
	function play_qt_file(obj)
	{
		var rectangle = obj.GetRectangle();

		if (rectangle)
		{
			rectangle = rectangle.split(',')
			var x1 = parseInt(rectangle[0]);
			var x2 = parseInt(rectangle[2]);
			var y1 = parseInt(rectangle[1]);
			var y2 = parseInt(rectangle[3]);

			var width = (x1 < 0) ? (x1 * -1) + x2 : x2 - x1;
			var height = (y1 < 0) ? (y1 * -1) + y2 : y2 - y1;
		}
		else
		{
			var width = 200;
			var height = 0;
		}

		obj.width = width;
		obj.height = height + 16;

		obj.SetControllerVisible(true);

		obj.Play();
	}
<!-- ENDIF -->
function doCollapseExpand(id,img){
   var b = document.getElementById(id);
      if (b.style.display=='none'){
      b.style.display='';
   document.images[img].src='{ROOT_PATH}images/infominus.png';
} else {
      b.style.display='none';
   document.images[img].src='{ROOT_PATH}images/infoplus.png';
} return false; }
// ]]>
</script>
<!--[if lt IE 7]>
        <script type="text/javascript" src="{T_TEMPLATE_PATH}/pngfix.js"></script>
<![endif]-->
<!-- INCLUDE prime_quick_buddies.html -->
<script type="text/javascript" src="{T_THEME_PATH}/highslide/highslide-with-gallery.packed.js"></script>
<script type="text/javascript">
	hs.graphicsDir = '{T_THEME_PATH}/highslide/graphics/';
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.outlineType = 'rounded-white';
	hs.wrapperClassName = 'controls-in-heading';
	hs.fadeInOut = true;
	//hs.dimmingOpacity = 0.75;

	// Add the controlbar
	if (hs.addSlideshow) hs.addSlideshow({
		//slideshowGroup: 'group1',
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: false,
		overlayOptions: {
			opacity: 1,
			position: 'top right',
			hideOnMouseOut: false
		}
	});
</script> 
<!-- IF S_IN_ARCADE -->
	<link href="{T_THEME_PATH}/arcade.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- ENDIF -->
</head>



<body class="{S_CONTENT_DIRECTION}">
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-3478075-5";
urchinTracker();
</script>
<!-- INCLUDE prime_bbcode_protect.html -->
<a name="top"></a>
<div id="wraporta">
	<!--header -->
		<div id="wrapheader">			
				
			<h1 id="logo-text"><a href="{U_INDEX}">{SITE_LOGO_IMG}</a></h1>
<br>
<br>
	<p id="slogan">לקסיקון,מאמרים,תמונות,סרטונים,מכירה,קנייה ועוד..</p>			
					
			
			<div id="wrapheader-links">
			<p>
				<a href="http://www.tukinfo.com">ראשי</a> | 
				<a href="http://www.tukinfo.com/contact.html">צור קשר</a> | 
				<a href="http://www.tukinfo.com/maps.html">מפת אתר</a>			
			</p>		
		</div>		
			<div id="imagebar"><img src="http://tukinfo.com/styles/Tukinfo/imageset/imagebar.PNG" alt="" title="" /></div>			
		</div>
		
<!-- INCLUDE menu.html --><br />

<div id="wrapcentre">
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<td class="row1" height="60px" width="73%"><center><!-- code from sekindo -->
<script type= "text/javascript" language="javascript" src="http://live.sekindo.com/live/liveView.php?s=420"></script>
<!-- code from sekindo --> </center>
<div align="center"> <p><!-- IF U_RESTORE_PERMISSIONS --> &nbsp;<a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a><!-- ENDIF -->
				<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --> &nbsp;<span style="color: red;">{L_BOARD_DISABLED}</span><!-- ENDIF --></p></div>
				</td>
<td class="row2" height="60px" width="27%"> <!-- INCLUDE menu1.html --></td></tr>
</table>
<!-- INCLUDE arcade/arcade_info_body.html -->
<!-- INCLUDE menu2.html --><br />	
<!-- IF S_USER_NEW_PRIVMSG -->
	<div align="center">
		<br />
		<img src="{T_THEME_PATH}/images/newpm.gif" width="32" height="32" alt="*" /><br>
		<a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a>
		<br />&nbsp;
	</div>
	
	<br />
	<!-- ENDIF -->
	
	<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->
	<div align="center">
		<br />
		<img src="{T_THEME_PATH}/images/newpm.gif" width="32" height="32" alt="*" /><br>
		<a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO_UNREAD}</a>
		<br />&nbsp;
	</div>
	
	<br />
	<!-- ENDIF -->
<!-- INCLUDE announcement_centre.html -->
	<!-- IF AD_CODE5 -->	<br /><div align="center">{AD_CODE5}</div>	<!-- ENDIF -->
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: Font very big in chrome - Need help please.

Post by PlanetStyles.net »

In your overall_header.html file, find:

Code: Select all

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
Replace the facebook and opengraphprotocol entries to create:

Code: Select all

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Re: Font very big in chrome - Need help please.

Post by ibelphegor »

Finally.. I spent hours editing stylesheet.css And search in Google about chrome/css.

Thank you very much!
Locked

Return to “[3.0.x] Styles Support & Discussion”