<?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: No background header picture alignment between Safari, Firefox and iPad Browser</title>
		<link>http://www.kriesi.at/support/topic/no-background-header-picture-alignment-between-safari-firefox-and-ipad-browser</link>
		<description>Support Forum - Topic: No background header picture alignment between Safari, Firefox and iPad Browser</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 01:28:34 +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/no-background-header-picture-alignment-between-safari-firefox-and-ipad-browser" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "No background header picture alignment between Safari, Firefox and iPad Browser"</title>
			<link>http://www.kriesi.at/support/topic/no-background-header-picture-alignment-between-safari-firefox-and-ipad-browser#post-91087</link>
			<pubDate>Fri, 11 Jan 2013 06:31:30 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">91087@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Glad it is fixed. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>VilaDoiPhone on "No background header picture alignment between Safari, Firefox and iPad Browser"</title>
			<link>http://www.kriesi.at/support/topic/no-background-header-picture-alignment-between-safari-firefox-and-ipad-browser#post-91081</link>
			<pubDate>Fri, 11 Jan 2013 03:43:56 +0000</pubDate>
			<dc:creator>VilaDoiPhone</dc:creator>
			<guid isPermaLink="false">91081@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello Devin!&#60;br /&#62;
Just disconsider my last post.&#60;br /&#62;
It was a error on server.&#60;br /&#62;
CSS code is working&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>VilaDoiPhone on "No background header picture alignment between Safari, Firefox and iPad Browser"</title>
			<link>http://www.kriesi.at/support/topic/no-background-header-picture-alignment-between-safari-firefox-and-ipad-browser#post-91077</link>
			<pubDate>Fri, 11 Jan 2013 01:42:23 +0000</pubDate>
			<dc:creator>VilaDoiPhone</dc:creator>
			<guid isPermaLink="false">91077@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello Devin!&#60;/p&#62;
&#60;p&#62;I got you. Better to use a smaller picture and centralized.&#60;br /&#62;
I've change picture size and css code follow your suggestion.&#60;br /&#62;
Now, css code looks like:&#60;/p&#62;
&#60;p&#62;body {&#60;br /&#62;
background: #f2f3f5 url(../images/skin1/bg.png);&#60;br /&#62;
color: #666;&#60;br /&#62;
background-repeat: no-repeat;&#60;br /&#62;
background-position: center top;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;But, i don't know why, image is not centralized and still repeating. Is like css no consider background-position instruction.&#60;br /&#62;
A screenshot to help understand:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://i251.photobucket.com/albums/gg306/tchello3/ScreenShot2013-01-10at111512PM_zps5020e4dc.png&#34; rel=&#34;nofollow&#34;&#62;http://i251.photobucket.com/albums/gg306/tchello3/ScreenShot2013-01-10at111512PM_zps5020e4dc.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any suggestion?&#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "No background header picture alignment between Safari, Firefox and iPad Browser"</title>
			<link>http://www.kriesi.at/support/topic/no-background-header-picture-alignment-between-safari-firefox-and-ipad-browser#post-91000</link>
			<pubDate>Thu, 10 Jan 2013 16:20:32 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">91000@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi VilaDoiPhone,&#60;/p&#62;
&#60;p&#62;You should use background position to get it set instead of just using one large image. Also, align your main logo into the center of the image instead of all the way to the left.&#60;/p&#62;
&#60;p&#62;See: &#60;a href=&#34;http://www.w3schools.com/cssref/pr_background-position.asp&#34; rel=&#34;nofollow&#34;&#62;http://www.w3schools.com/cssref/pr_background-position.asp&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;So where you have:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;body {
background: #f2f3f5 url(../images/skin1/bg.png) repeat-x 0 0;
color: #666;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You could use this instead (as long as you change the image so that the logo elements are in the center:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;body {
background: #f2f3f5 url(../images/skin1/bg.png);
color: #666;
background-repeat: no-repeat;
background-position: top center;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>VilaDoiPhone on "No background header picture alignment between Safari, Firefox and iPad Browser"</title>
			<link>http://www.kriesi.at/support/topic/no-background-header-picture-alignment-between-safari-firefox-and-ipad-browser#post-90884</link>
			<pubDate>Thu, 10 Jan 2013 02:20:43 +0000</pubDate>
			<dc:creator>VilaDoiPhone</dc:creator>
			<guid isPermaLink="false">90884@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello, we are using Newscast theme with some changes, using less resources.&#60;br /&#62;
After change Header Picture Background (bg.png), i just dont get the same aligment on this 3 browsers - Safari and Firefox for Mac and Safari for iPad.&#60;br /&#62;
link: &#60;a href=&#34;http://www.viladoiphone.com.br&#34; rel=&#34;nofollow&#34;&#62;http://www.viladoiphone.com.br&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;screenshots on photobucket:&#60;br /&#62;
Safari on iPad: &#60;a href=&#34;http://i251.photobucket.com/albums/gg306/tchello3/SafariiPad_zps5c94864a.png&#34; rel=&#34;nofollow&#34;&#62;http://i251.photobucket.com/albums/gg306/tchello3/SafariiPad_zps5c94864a.png&#60;/a&#62;&#60;br /&#62;
Firefox on Mac: &#60;a href=&#34;http://i251.photobucket.com/albums/gg306/tchello3/FirefoxMac_zps277cfef8.png&#34; rel=&#34;nofollow&#34;&#62;http://i251.photobucket.com/albums/gg306/tchello3/FirefoxMac_zps277cfef8.png&#60;/a&#62;&#60;br /&#62;
Safari on Mac: &#60;a href=&#34;http://i251.photobucket.com/albums/gg306/tchello3/SafariMac_zpsef94adab.png&#34; rel=&#34;nofollow&#34;&#62;http://i251.photobucket.com/albums/gg306/tchello3/SafariMac_zpsef94adab.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I just try a lot of changes on style.css without success, could you guys help?&#60;br /&#62;
Thanks in advance!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
