<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: Font Size Adjustments WIthin Responsive Layouts</title>
		<link>http://www.kriesi.at/support/topic/font-size-adjustments-within-responsive-layouts</link>
		<description>Support Forum - Topic: Font Size Adjustments WIthin Responsive Layouts</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 03:42:22 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/font-size-adjustments-within-responsive-layouts" rel="self" type="application/rss+xml" />

		<item>
			<title>PearlsIntl on "Font Size Adjustments WIthin Responsive Layouts"</title>
			<link>http://www.kriesi.at/support/topic/font-size-adjustments-within-responsive-layouts#post-103027</link>
			<pubDate>Mon, 25 Mar 2013 21:11:51 +0000</pubDate>
			<dc:creator>PearlsIntl</dc:creator>
			<guid isPermaLink="false">103027@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks, just what I needed!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Font Size Adjustments WIthin Responsive Layouts"</title>
			<link>http://www.kriesi.at/support/topic/font-size-adjustments-within-responsive-layouts#post-102884</link>
			<pubDate>Mon, 25 Mar 2013 07:28:47 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">102884@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can use media queries to make it responsive - i.e. use following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .main_menu ul.menu li &#38;gt; a {
font-size: 16px;
}
#top .sub_menu ul.menu li &#38;gt; a {
font-size: 14px;
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (max-width: 989px) {
	#top .main_menu ul.menu li &#38;gt; a {
	font-size: 14px;
	}

	#top .sub_menu ul.menu li &#38;gt; a {
	font-size: 12px;
	}
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	#top .main_menu ul.menu li &#38;gt; a {
	font-size: 12px;
	}

	#top .sub_menu ul.menu li &#38;gt; a {
	font-size: 10px;
	}
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
	#top .main_menu ul.menu li &#38;gt; a {
	font-size: 11px;
	}

	#top .sub_menu ul.menu li &#38;gt; a {
	font-size: 9px;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and adjust the font size values.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PearlsIntl on "Font Size Adjustments WIthin Responsive Layouts"</title>
			<link>http://www.kriesi.at/support/topic/font-size-adjustments-within-responsive-layouts#post-102777</link>
			<pubDate>Sat, 23 Mar 2013 21:24:19 +0000</pubDate>
			<dc:creator>PearlsIntl</dc:creator>
			<guid isPermaLink="false">102777@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm experiencing the same issue, and I'm afraid your video might be a little over my head. &#60;/p&#62;
&#60;p&#62;I got to the part where you changed the font size, but the CSS that showed up looked like this:&#60;/p&#62;
&#60;p&#62;media=&#34;screen&#34;&#60;br /&#62;
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {&#60;br /&#62;
margin: 0;&#60;br /&#62;
padding: 0;&#60;br /&#62;
border: 0;&#60;br /&#62;
font-size: 100%;&#60;br /&#62;
font: inherit;&#60;br /&#62;
font-family: inherit;&#60;br /&#62;
font-size: 100%;&#60;br /&#62;
font-style: inherit;&#60;br /&#62;
font-variant: inherit;&#60;br /&#62;
font-weight: inherit;&#60;br /&#62;
line-height: inherit;&#60;br /&#62;
vertical-align: baseline;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;I'm not really sure what to do next.&#60;/p&#62;
&#60;p&#62;This is what I'm using right now (added to Quick CSS), but as is the case with blospa, the text is not responsive and turns into an unattractive jumble when I resize the screen.:&#60;/p&#62;
&#60;p&#62;#top .main_menu ul.menu li &#38;gt; a {&#60;br /&#62;
font-size: 16px; style: helvetica;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .sub_menu ul.menu li &#38;gt; a {&#60;br /&#62;
font-size: 14px; style: helvetica;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Please let me know how I can make this responsive. Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Font Size Adjustments WIthin Responsive Layouts"</title>
			<link>http://www.kriesi.at/support/topic/font-size-adjustments-within-responsive-layouts#post-100554</link>
			<pubDate>Mon, 11 Mar 2013 10:28:40 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">100554@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You have a large number of various sized texts on the menus and other place. Would you take a screen shot and circle the items you want to enlarge or change and add into what. You can use imgur.com if you want to add the screenshot and link to it from here.&#60;/p&#62;
&#60;p&#62;I use Chrome Dev Tools for the Chrome browser and it instantly tells me the css . You should give it a try its very easy to use and will put you in control. I made a quick video how to use it, and then i just copy the css it tells me to copy and add to my css/custom.css &#60;a href=&#34;https://docs.google.com/file/d/0B8hqGBMSfHtKNE51dUJPZGJwdlE/edit?usp=sharing&#34; rel=&#34;nofollow&#34;&#62;https://docs.google.com/file/d/0B8hqGBMSfHtKNE51dUJPZGJwdlE/edit?usp=sharing&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>biospa on "Font Size Adjustments WIthin Responsive Layouts"</title>
			<link>http://www.kriesi.at/support/topic/font-size-adjustments-within-responsive-layouts#post-100381</link>
			<pubDate>Sun, 10 Mar 2013 00:23:42 +0000</pubDate>
			<dc:creator>biospa</dc:creator>
			<guid isPermaLink="false">100381@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've been trying to increase the font size of the main menu items, the blog text, post title, slideshow caption title, slideshow call to action button label text. &#60;/p&#62;
&#60;p&#62;Here's the code I've tried within Quick CSS but sizes are retained when screen sizes reduce which makes the page look awkward.&#60;/p&#62;
&#60;p&#62;body {&#60;br /&#62;
    font-size: 19px;&#60;br /&#62;
    color: #333333;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .post-title {&#60;br /&#62;
font-size: 30px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .main_menu ul.menu li &#38;gt; a {&#60;br /&#62;
font-size: 16px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;What is the correct way to adjust the font sizes listed above so they reduce automatically during responsive adjustments?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
