<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>WebDeveloper.com - CSS</title>
		<link>http://www.webdeveloper.com/forum/</link>
		<description>Discussion and technical support relating to Cascading Style Sheets.</description>
		<language>en</language>
		<lastBuildDate>Mon, 20 May 2013 22:20:48 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.webdeveloper.com/forum/images/misc/rss.png</url>
			<title>WebDeveloper.com - CSS</title>
			<link>http://www.webdeveloper.com/forum/</link>
		</image>
		<item>
			<title>css</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278259-css&amp;goto=newpost</link>
			<pubDate>Mon, 20 May 2013 11:08:33 GMT</pubDate>
			<description>hai, 
 
i am HTML learner 
so please help me  
 
How to create the css file?</description>
			<content:encoded><![CDATA[<div>hai,<br />
<br />
i am HTML learner<br />
so please help me <br />
<br />
How to create the css file?</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>packnmove</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278259-css</guid>
		</item>
		<item>
			<title><![CDATA[Chrome last <li> margin problem]]></title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278233-Chrome-last-lt-li-gt-margin-problem&amp;goto=newpost</link>
			<pubDate>Sun, 19 May 2013 20:24:21 GMT</pubDate>
			<description><![CDATA[Hi, I've made 2 lists and on both the third element gets a margin on the top in chrome only. 
 
Css 
 
Code: 
--------- 
#service ul, #about ul, #footer ul{ 
    list-style-type: none; 
    display: inline; 
}]]></description>
			<content:encoded><![CDATA[<div>Hi, I've made 2 lists and on both the third element gets a margin on the top in chrome only.<br />
<br />
Css<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">#service ul, #about ul, #footer ul{<br />
&nbsp; &nbsp; list-style-type: none;<br />
&nbsp; &nbsp; display: inline;<br />
}<br />
#service li{<br />
&nbsp; &nbsp; float: left;<br />
&nbsp; &nbsp; width: 312px;<br />
&nbsp; &nbsp; height: 285px;<br />
&nbsp; &nbsp; padding-left: 29px;<br />
}</code><hr />
</div> Heres the link as well: <a rel="nofollow" href="http://www.jonasasperud.com/port/beh" target="_blank">Test server</a><br />
<br />
Help is much appreciated.</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>Jonas!</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278233-Chrome-last-lt-li-gt-margin-problem</guid>
		</item>
		<item>
			<title>Creating identical header and footer</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278203-Creating-identical-header-and-footer&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 19:12:09 GMT</pubDate>
			<description>Hey there friends. 
 
I am looking to add an identical repeat image to both the very top and bottom of the page. 
 
I added the image to the body {} tag and also the html {} tag. 
 
The problem is the body is set to 1000px width - so either the footer or header is limited to 1000 px width 
 
How do...</description>
			<content:encoded><![CDATA[<div>Hey there friends.<br />
<br />
I am looking to add an identical repeat image to both the very top and bottom of the page.<br />
<br />
I added the image to the body {} tag and also the html {} tag.<br />
<br />
The problem is the body is set to 1000px width - so either the footer or header is limited to 1000 px width<br />
<br />
How do I make them both stretch the entire page??<br />
<br />
Thanks in advance</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>phpnewbie34</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278203-Creating-identical-header-and-footer</guid>
		</item>
		<item>
			<title>Hide parent element from an iframe link</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278175-Hide-parent-element-from-an-iframe-link&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 08:32:26 GMT</pubDate>
			<description><![CDATA[Hello, 
 
I'm working on a project, and I need to find a solution to hide a DIV element by clicking on a link. The problem is that the DIV element is located in one window (parent window), while the link is located in another window (an iframe). 
 
Here is the html code for the two pages: 
 
...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I'm working on a project, and I need to find a solution to hide a DIV element by clicking on a link. The problem is that the DIV element is located in one window (parent window), while the link is located in another window (an iframe).<br />
<br />
Here is the html code for the two pages:<br />
<br />
<br />
<b>index.html (parent window)<br />
--------------------------------------------<br />
&lt;html&gt;<br />
&lt;head&gt;&lt;title&gt;index&lt;/title&gt;&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id=&quot;element&quot;&gt;element to be hidden&lt;/div&gt;<br />
&lt;iframe src=&quot;iframe.html&quot; width=&quot;320&quot; height=&quot;40&quot; frameborder=&quot;1&quot; name=&quot;iframe&quot;&gt;&lt;/iframe&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
<br />
<br />
iframe.html (iframe window)<br />
--------------------------------------------<br />
&lt;html&gt;<br />
&lt;head&gt;&lt;title&gt;iframe&lt;/title&gt;&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;a href=&quot;&quot;&gt;click here to hide the parent window element!&lt;/a&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</b><br />
<br />
If you could be as specific as possible with your solution, that would be great and much appreciated! I'm not skilled with JavaScript and CSS.<br />
<br />
I searched Google for a few hours, but I couldn't solve the problem, even though my first guess is that this is a pretty simple thing to do. ;)<br />
<br />
Anyhow, I noticed some were using a combination of JavaScript and CSS (display:none;) for cases close to this one.<br />
<br />
Below you can find a small archive with the two pages listed above.<br />
<br />
Thank you very much!</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://www.webdeveloper.com/forum/attachment.php?attachmentid=15571&amp;d=1368865787">pages.zip&lrm;</a> 
(458 Bytes)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>alexander2000</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278175-Hide-parent-element-from-an-iframe-link</guid>
		</item>
		<item>
			<title><![CDATA[[HTML / CSS] Not so 100%.]]></title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278165-HTML-CSS-Not-so-100-.&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 01:29:19 GMT</pubDate>
			<description><![CDATA[SO I'm working on a website and want a backdrop that stretches 100%. 
 
I have looked all over for a code to do so, and have successfully found one that stretches 100%... Of the screen size, and then stops. 
 
What do I mean? 
 
Simply put, if my screen is 1024px high... The code will stretch that...]]></description>
			<content:encoded><![CDATA[<div>SO I'm working on a website and want a backdrop that stretches 100%.<br />
<br />
I have looked all over for a code to do so, and have successfully found one that stretches 100%... Of the screen size, and then stops.<br />
<br />
What do I mean?<br />
<br />
Simply put, if my screen is 1024px high... The code will stretch that element to 1024px and then stop. So if the page ends up scrolling, the background will stretch to the bottom of the first page, but as you scroll into the second page, you lose the backdrop.<br />
<br />
Here's what I'm using for HTML:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;backdrop&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;content&quot;</span> align=<span style="color:#0000FF">&quot;center&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;br&gt;</span><br />
<span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;img/IGNiTE.png&quot;</span> width=<span style="color:#0000FF">&quot;171&quot;</span> height=<span style="color:#0000FF">&quot;127&quot;</span> alt=<span style="color:#0000FF">&quot;IGNiTE Homepage&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;br&gt;</span><br />
<span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;nav&quot;</span>&gt;</span><br />
<br />
<br />
<br />
<span style="color:#000080">&lt;/div&gt;</span><br />
<br />
<span style="color:#000080">&lt;div id=<span style="color:#0000FF">&quot;middle&quot;</span>&gt;</span><br />
<br />
If this content box extends into a second page, the backdrop ends at the end of page 1!<br />
<br />
<span style="color:#000080">&lt;/div&gt;</span><br />
<br />
<span style="color:#000080">&lt;/div&gt;</span><br />
<span style="color:#000080">&lt;/div&gt;</span></code><hr />
</div> And CSS:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">html, body {<br />
&nbsp; &nbsp; &nbsp; &nbsp; min-height: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; height: 100%;<br />
}<br />
html {<br />
&nbsp; &nbsp; &nbsp; &nbsp; background: url(img/bg.png) fixed;<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 850px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin: 0 auto;<br />
}<br />
<br />
body {<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 850px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin: 0 auto;<br />
}<br />
<br />
div#backdrop {<br />
&nbsp; &nbsp; &nbsp; &nbsp; background: #2c0000 fixed;<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 850px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin: 0 auto;<br />
&nbsp; &nbsp; &nbsp; &nbsp; height: 100%;<br />
}<br />
div#content {<br />
&nbsp; &nbsp; &nbsp; &nbsp; background: #000 fixed;<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 830px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; height: 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin: 0 auto;<br />
&nbsp; &nbsp; &nbsp; &nbsp; overflow: visible;<br />
}<br />
#nav {<br />
&nbsp; &nbsp; &nbsp; &nbsp; background: url(img/nav.png);<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 792px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; height: 35px;<br />
}<br />
#middle {<br />
&nbsp; &nbsp; &nbsp; &nbsp; background-color: #111111;<br />
&nbsp; &nbsp; &nbsp; &nbsp; border: 2px solid #666;<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 800px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin-top: 10px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin-bottom: 10px;<br />
}<br />
<br />
.split {<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin-top: 5px;<br />
}<br />
.nav {<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin-top: 5px;<br />
}</code><hr />
</div> Any ideas?</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>DannLea</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278165-HTML-CSS-Not-so-100-.</guid>
		</item>
		<item>
			<title>row image swap dont click</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278163-row-image-swap-dont-click&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 00:27:32 GMT</pubDate>
			<description>Hi, 
 
I have code that has links in a row and swaps images. 
This was an ordeal to say the least. 
 
The images dont resize as i thought on browser resize so I had to use media queries to alter size of these images. 
 
Can I get the images to resize without adding media queries?</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I have code that has links in a row and swaps images.<br />
This was an ordeal to say the least.<br />
<br />
The images dont resize as i thought on browser resize so I had to use media queries to alter size of these images.<br />
<br />
Can I get the images to resize without adding media queries?<br />
<br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">img, embed, object, video {<br />
<br />
&nbsp; max-width: 100%;<br />
&nbsp;  <br />
}<br />
<br />
ul.nav<br />
{<br />
&nbsp; &nbsp; list-style-type: none;<br />
&nbsp; &nbsp; padding: 0;<br />
&nbsp; &nbsp; margin: 0;<br />
&nbsp; &nbsp; float: left;<br />
&nbsp; &nbsp; <br />
}<br />
<br />
<br />
.nav li#welcome a {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  background-image:url(images/ic1.png); <br />
&nbsp; background-repeat: no-repeat; <br />
&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
.nav li#welcome a:hover {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  background-image:url(images/ic1b.png); <br />
&nbsp; background-repeat: no-repeat; <br />
&nbsp;<br />
&nbsp; <br />
&nbsp;  }<br />
<br />
.nav li#welcome2 a {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  background-image:url(images/ic1.png); <br />
&nbsp; background-repeat: no-repeat; <br />
&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
.nav li#welcome2 a:hover {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  background-image:url(images/ic1b.png); <br />
&nbsp; background-repeat: no-repeat; <br />
&nbsp; <br />
&nbsp;  }<br />
&nbsp;.nav li#welcome3 a {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  background-image:url(images/ic1.png); <br />
&nbsp; background-repeat: no-repeat; <br />
&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
.nav li#welcome3 a:hover {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  background-image:url(images/ic1b.png); <br />
&nbsp; background-repeat: no-repeat; <br />
&nbsp;<br />
&nbsp; <br />
&nbsp;  }<br />
<br />
.nav li#welcome4 a {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  background-image:url(images/ic1.png); <br />
&nbsp; background-repeat: no-repeat; <br />
&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
.nav li#welcome4 a:hover {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  background-image:url(images/ic1b.png); <br />
&nbsp; background-repeat: no-repeat; <br />
&nbsp; <br />
&nbsp;  }<br />
&nbsp;<br />
&nbsp;  <br />
#head ul li a<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; text-decoration: none;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; float:left;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin-right:40px;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
#head ul li <br />
{<br />
&nbsp; &nbsp;  display: inline;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  <br />
<br />
&nbsp;}<br />
#head img<br />
{<br />
&nbsp; &nbsp; &nbsp; max-width: 100%;<br />
<br />
&nbsp;}<br />
<br />
<br />
#head ul<br />
{<br />
/*margin-left: 15%;*/<br />
padding:0;<br />
<br />
list-style-type: none;<br />
<br />
border:none;<br />
<br />
}&nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
<br />
<br />
@media screen and (min-width: 960px) <br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; ul.nav a{&nbsp; height: 100px; width: 100px;}<br />
}<br />
<br />
@media screen and (max-width: 959px) <br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; ul.nav a{&nbsp; height: 50px; width: 50px;}<br />
}<br />
<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body&gt;<br />
<br />
lkjl<br />
&lt;div id=&quot;head&quot;&gt;<br />
&nbsp; &lt;ul class=&quot;nav&quot;&gt;<br />
&nbsp; &nbsp; &lt;li id=&quot;welcome&quot;&gt;&lt;a href=&quot;home.html&quot;&gt;&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &lt;li id=&quot;welcome2&quot;&gt;&lt;a href=&quot;home.html&quot;&gt;&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;li id=&quot;welcome3&quot;&gt;&lt;a href=&quot;home.html&quot;&gt;&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &lt;li id=&quot;welcome4&quot;&gt;&lt;a href=&quot;home.html&quot;&gt;&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &lt;/ul&gt;<br />
&lt;/div&gt;</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>jagguy</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278163-row-image-swap-dont-click</guid>
		</item>
		<item>
			<title>CSS only work sometimes</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278091-CSS-only-work-sometimes&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 13:16:24 GMT</pubDate>
			<description><![CDATA[Hello all! 
 
I am having a tiny bit of trouble with CSS and a link style. I want it to have inline-block, which does work on some pages but on other it just won't show. 
 
It shows the text as white, which is set in the link style class of the CSS: 
 
 
Code: 
--------- 
.link-style {]]></description>
			<content:encoded><![CDATA[<div>Hello all!<br />
<br />
I am having a tiny bit of trouble with CSS and a link style. I want it to have inline-block, which does work on some pages but on other it just won't show.<br />
<br />
It shows the text as white, which is set in the link style class of the CSS:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">.link-style {<br />
&nbsp; &nbsp; &nbsp; &nbsp; display: inline-block;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin-top: 10px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; padding: 5px 15px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; background: #000000;<br />
&nbsp; &nbsp; &nbsp; &nbsp; letter-spacing: 1px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; text-decoration: none;<br />
&nbsp; &nbsp; &nbsp; &nbsp; color: #FFFFFF;<br />
}</code><hr />
</div> As said it does read the color and I can change the text color from white to black, but it just won't show the inline-block. It shows the block on the index page but once I go to profile page it just won't show it.<br />
<br />
The index.php:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;?php session_start(); ?&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;!-- Set fonts and charset plus general information of the site --&gt;<br />
&lt;title&gt;Welcome to ******&lt;/title&gt;<br />
&lt;meta name=&quot;keywords&quot; content=&quot;&quot; /&gt;<br />
&lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;<br />
&lt;!-- Using googles fonts and the css file --&gt;<br />
&lt;link href=&quot;http://fonts.googleapis.com/css?family=Open+Sans:400,300,600&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;<br />
&lt;link href=&quot;css/css.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; /&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;!-- The whole wrapper around the site --&gt;<br />
&lt;div id=&quot;wrapper&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Start header --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;header&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;logo&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Ready for text on top picture --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Start login info --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;login&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //$member = unserialize($_SESSION['member']);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ( isset($_SESSION['member_id']) )<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;Welcome %s (%s %s)! &lt;a href='logout.php'&gt;Sign out&lt;/a&gt;&quot;, $_SESSION['username'], $_SESSION['first_name'], $_SESSION['last_name']);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf('&lt;a href=&quot;login.php&quot;&gt;Login&lt;/a&gt;');<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Start menu --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;menu-wrapper&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div class=&quot;ribbon ribbon-content&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;menu&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ul&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li class=&quot;current_page_item&quot;&gt;&lt;a href=&quot;index.php&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;profile.php&quot;&gt;Profile&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;tournaments.php&quot;&gt;Tournaments&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;gyms.php&quot;&gt;Gyms&lt;/a&gt;&lt;/li&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ul&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- start content --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;columns&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div class=&quot;content&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- post news --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;column1&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Sample button for admins<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ( isset ($_SESSION['member_id']) )<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; include_once 'php/Role.php';<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $memberrole = new MemberRoleController();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $roles = $memberrole-&gt;getRolesByMemberID($_SESSION['member_id']);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; foreach ( $roles as $role )<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ( $role-&gt;role === &quot;Admin&quot;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo '&lt;p&gt;&lt;a href=&quot;write_news.php&quot; class=&quot;link-style&quot;&gt;Write new news&lt;/a&gt;&lt;/p&gt;';<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //include the news.php file for showing and publishing news<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; include 'php/News.php';<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $NewsController = new NewsController();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $newsarray = $NewsController-&gt;getNews(3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Publish news on the front page<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; foreach ($newsarray as $news)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf('&lt;h2&gt;%s&lt;/h2&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;&lt;img src=&quot;%s&quot; width=&quot;680&quot; height=&quot;200&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;%s - %s&lt;/p&gt;', $news-&gt;headline, $news-&gt;Image, $news-&gt;date, $news-&gt;content);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; unset($NewsController);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo '&lt;p&gt;&lt;a href=&quot;all_news.php&quot; class=&quot;link-style&quot;&gt;More...&lt;/a&gt;&lt;/p&gt;';<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Start lastest fights --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;column2&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; include_once 'php/latestFights.php';<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ?&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- Footer for copyright notice --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&quot;footer&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;Copyright &amp;copy; Uni group Bi405F13&lt;/p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code><hr />
</div> You can view the page on <a rel="nofollow" href="http://p4.bitbender.dk" target="_blank">http://p4.bitbender.dk</a>, here the index file works fine, and in &quot;latest fights&quot; it does show the inline block.<br />
<br />
Now the profile code:<br />
Profile code in next post can't post more than 1k chars...<br />
<br />
The page is here: <a rel="nofollow" href="http://p4.bitbender.dk/profile.php" target="_blank">http://p4.bitbender.dk/profile.php</a><br />
<br />
here it won't show the inline block, but it still reads that the text color should be white, and I can change that to black.<br />
<br />
Furthermore, if I right click on where the box should be and press &quot;Expect element&quot; (FireFox) I can review the CSS code. If I go down to the link style CSS code here, there is an inline of the line where it writes &quot;display: inline-block;&quot; but that does not happen on any of the other pages.<br />
<br />
How come I can't get it to show the inline block?<br />
<br />
This is my very first time I ever try CSS/HTML/PHP so there might be something weird happening. If you need more information please tell and I'll be happy to share them.<br />
<br />
If you want to try the login on the profile page I have created a user:<br />
username: Weee<br />
password: weee<br />
<br />
Thanks in advance!</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>Jelle</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278091-CSS-only-work-sometimes</guid>
		</item>
		<item>
			<title>cant resize images</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278085-cant-resize-images&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 12:17:45 GMT</pubDate>
			<description>Hi, 
 
When I resize my webpage, the row of 4 images in the heading dont resize and they go on another line. 
I just want the images to reduce in size as the browser reduces. 
 
http://www.mymrt.net/ComputerTraining/comptest.html</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
When I resize my webpage, the row of 4 images in the heading dont resize and they go on another line.<br />
I just want the images to reduce in size as the browser reduces.<br />
<br />
<a rel="nofollow" href="http://www.mymrt.net/ComputerTraining/comptest.html" target="_blank">http://www.mymrt.net/ComputerTraining/comptest.html</a></div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>jagguy</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278085-cant-resize-images</guid>
		</item>
		<item>
			<title>Css drop down menu not working correctly</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278053-Css-drop-down-menu-not-working-correctly&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 23:47:57 GMT</pubDate>
			<description><![CDATA[I am trying to use a basic css drop down menu as it would allow me to add pages to my site easily and expand it in the future with no real problems. I found a nice script but some of the things I can't get quite placed how I want them.  
 
I am trying to move the slider right up against the nav...]]></description>
			<content:encoded><![CDATA[<div>I am trying to use a basic css drop down menu as it would allow me to add pages to my site easily and expand it in the future with no real problems. I found a nice script but some of the things I can't get quite placed how I want them. <br />
<br />
I am trying to move the slider right up against the nav bar, I am sure I put a massive padding bottom on something when I was playing around with it.<br />
The nav menu doesn't overlap the slider, would using stack overflows be away around this.<br />
I am also trying to move the social network buttons in line with the nav bar.<br />
The links don't center despite me using margin 0x auto; through out the nav links<br />
When I move onto subcategories the main link disappears<br />
I was also trying to make the black line go right up the side of the links not begin half way down and stretch too far down.<br />
I have been playing around with it for hours and its not too far away but I couldn't get round these obstacles.<br />
<br />
The website is <a rel="nofollow" href="http://www.cherrietestingwebsite.org" target="_blank">www.cherrietestingwebsite.org</a><br />
<br />
Thanks.</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>delboy1875</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278053-Css-drop-down-menu-not-working-correctly</guid>
		</item>
		<item>
			<title>Site Not Expanding With Browser</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278047-Site-Not-Expanding-With-Browser&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 20:58:33 GMT</pubDate>
			<description><![CDATA[Hello. 
So I posted this yesterday, and thought I figured it out. Can anyone tell me what is happening here? If you shrink the browser to a couple hundred pixels wide, and then scroll right you will see what is happening. 
 
http://brookelynperry.com/dev/header.php 
 
I can't seem to figure this...]]></description>
			<content:encoded><![CDATA[<div>Hello.<br />
So I posted this yesterday, and thought I figured it out. Can anyone tell me what is happening here? If you shrink the browser to a couple hundred pixels wide, and then scroll right you will see what is happening.<br />
<br />
<a rel="nofollow" href="http://brookelynperry.com/dev/header.php" target="_blank">http://brookelynperry.com/dev/header.php</a><br />
<br />
I can't seem to figure this out.</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>andy.richin</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278047-Site-Not-Expanding-With-Browser</guid>
		</item>
		<item>
			<title>padding issues in Chrome</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278045-padding-issues-in-Chrome&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 20:18:06 GMT</pubDate>
			<description>okay so my page renders the way i need it as in the attached image where the table rows are the same height when I take out the padding, but it renders with one row shorter than the other, like in the other image when I put the padding in.. what am I missing? this is only happening in Chrome and...</description>
			<content:encoded><![CDATA[<div>okay so my page renders the way i need it as in the attached image where the table rows are the same height when I take out the padding, but it renders with one row shorter than the other, like in the other image when I put the padding in.. what am I missing? this is only happening in Chrome and only on my wifes monitor, not mine, the 'untitled.jpg' is how it appears in all other browsers (in respect to alignment) regardless of whether or not i put padding in... the weird thing is, I'm usually having problems with IE, not Chrome. the reason I'm so concerned is because since people have different resolution monitors I'm willing to bet her computer is not the only one where it would display the wrong way. here is my code<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">#bg {position:fixed; width:100%; height:100%; left:0px; top:0px; z-index:-1;}<br />
#mainbar {position:absolute; width:98%; top:8%; height:26%; background-color:rgba(0, 0, 0, 0.5);<br />
&nbsp; &nbsp;  border-radius:50px 0px 50px 0px; border: solid 3px #df8100;}<br />
#navtable {position:absolute; top:2%; left:1%; width:95%; height:98%; border-collapse: separate;<br />
&nbsp; &nbsp; &nbsp; border:1px white solid;}<br />
#navtable tr td{border-radius:40px 0px 40px 0px;<br />
&nbsp; &nbsp; &nbsp; font-size:27px; text-align:center; font-weight:bold;}<br />
#heading {color:orange; font-size:195%; position:relative; top:-15px;<br />
&nbsp; &nbsp; &nbsp; font-weight:bold; font-family:cursive; opacity:0.98; filter:alpha(opacity=98);}<br />
#navtable tr td {width:17%; border:white solid 1px;}<br />
&nbsp; &nbsp; &nbsp; a {color:#a41b13; text-decoration:none; background-color: #ffe188; <b><i><u>padding:5px; </u></i></b>}</code><hr />
</div> <br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML Code:</div>
	<hr /><code class="bbcode_code"><span style="color:#800080">&lt;img id='bg' src='mypics/tmp5head.jpg' /&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;div id='mainbar'&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;table id='navtable'&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;tr&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;td rowspan='2' style='width:45%; text-align:center;'&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;font id='heading'&gt;</span>YOUR WEBSITE<span style="color:#000080">&lt;/font&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;td&gt;</span><span style="color:#008000">&lt;a href=''&gt;</span>STORE<span style="color:#008000">&lt;/a&gt;</span><span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;td&gt;</span><span style="color:#008000">&lt;a href=''&gt;</span>PRINTS<span style="color:#008000">&lt;/a&gt;</span><span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;td&gt;</span><span style="color:#008000">&lt;a href=''&gt;</span>SKETCHPAD<span style="color:#008000">&lt;/a&gt;</span><span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;/tr&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;tr&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;td &gt;</span><span style="color:#008000">&lt;a href=''&gt;</span>CONTACT<span style="color:#008000">&lt;/a&gt;</span><span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;td &gt;</span><span style="color:#008000">&lt;a href=''&gt;</span>GALLERY<span style="color:#008000">&lt;/a&gt;</span><span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;td &gt;</span><span style="color:#008000">&lt;a href=''&gt;</span>REQUESTS<span style="color:#008000">&lt;/a&gt;</span><span style="color:#008080">&lt;/td&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;/tr&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#008080">&lt;/table&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000080">&lt;/div&gt;</span></code><hr />
</div> EDIT: Now it's appearing the wrong way whether or not padding is there.. weird.. i did find out that the difference is the screen resolution.. how to adjust my code to work in different resolutions in this case?</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.webdeveloper.com/forum/attachment.php?attachmentid=15561&amp;d=1368648408" target="_blank">Untitled.jpg&lrm;</a> 
(65.6 KB)
</li> <li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.webdeveloper.com/forum/attachment.php?attachmentid=15563&amp;d=1368648416" target="_blank">Untitled1.jpg&lrm;</a> 
(66.8 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>thewebiphyer</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278045-padding-issues-in-Chrome</guid>
		</item>
		<item>
			<title>Navigation bar not quite working properly</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?278017-Navigation-bar-not-quite-working-properly&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 13:26:28 GMT</pubDate>
			<description><![CDATA[I am trying to use a basic css drop down menu as it would allow me to add pages to my site easily and expand it in the future with no real problems.  I found a nice script but some of the things I can't get quite placed how I want them.   
 
I am trying to move the slider right up against the nav...]]></description>
			<content:encoded><![CDATA[<div>I am trying to use a basic css drop down menu as it would allow me to add pages to my site easily and expand it in the future with no real problems.  I found a nice script but some of the things I can't get quite placed how I want them.  <br />
<br />
I am trying to move the slider right up against the nav bar, I am sure I put a massive padding bottom on something when I was playing around with it.<br />
The nav menu doesn't overlap the slider, would using stack overflows be away around this.<br />
I am also trying to move the social network buttons in line with the nav bar.<br />
The links don't center despite me using margin 0x auto; through out the nav links<br />
When I move onto subcategories the main link disappears<br />
I was also trying to make the black line go right up the side of the links not begin half way down and stretch too far down.<br />
I have been playing around with it for hours and its not too far away but I couldn't get round these obstacles.<br />
<br />
Thanks.</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>delboy1875</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?278017-Navigation-bar-not-quite-working-properly</guid>
		</item>
		<item>
			<title>At loss in web design</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277993-At-loss-in-web-design&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 04:41:09 GMT</pubDate>
			<description>First i would like to state i know i make alot of errors but plese bare with me. 
 
 
here is my issue i am a developer meaning i do C++,php,javascript and that is what i really like being able to use logic to solve problems but recently i thaught to give the freelance thing a try(im 17). Thing id...</description>
			<content:encoded><![CDATA[<div>First i would like to state i know i make alot of errors but plese bare with me.<br />
<br />
<br />
here is my issue i am a developer meaning i do C++,php,javascript and that is what i really like being able to use logic to solve problems but recently i thaught to give the freelance thing a try(im 17). Thing id thogh i am not new to html and or css and how they are used i just cannot seem to get my sites to look great and trust me i have read alot to help. what makes it worse i see sites that i know take less effort than what i do but by far look better. i use to think if i knowed how to get all my divs where i wanted them i could do anything seems i was wrong.<br />
<br />
I mostly do raw codeing but have tried photoshop and hated it, tried fireworks and love it(well it makes doing the layout easier than refreshing the page in notedpad or dreamweaver)<br />
<br />
<br />
nuwebdesinz-examples.netii.net/snow/<br />
nuwebdesinz-examples.netii.net/blog/<br />
<br />
those are some that i have alredy done<br />
<br />
can any great deigner or decent handcoder help me out what is it i need to improve or is it something i just dont have.<br />
<br />
i alse have 2 screenshots of things i have done please help</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.webdeveloper.com/forum/attachment.php?attachmentid=15553&amp;d=1368592810" target="_blank">rpg.jpg&lrm;</a> 
(98.1 KB)
</li> <li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.webdeveloper.com/forum/attachment.php?attachmentid=15555&amp;d=1368592832" target="_blank">hshsh.jpg&lrm;</a> 
(100.0 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>zanda</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277993-At-loss-in-web-design</guid>
		</item>
		<item>
			<title><![CDATA[[RESOLVED] Site Not 100 Percent With Browser]]></title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277971-RESOLVED-Site-Not-100-Percent-With-Browser&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 20:31:52 GMT</pubDate>
			<description>I am having some issues with a site that I am building and it expanding the width of the browser. For instance, if my browser window is set to 1500px, a scrollbar will appear at the bottom allowing you to scroll right. Once you scroll right the site is cut off and there is only white space. The...</description>
			<content:encoded><![CDATA[<div>I am having some issues with a site that I am building and it expanding the width of the browser. For instance, if my browser window is set to 1500px, a scrollbar will appear at the bottom allowing you to scroll right. Once you scroll right the site is cut off and there is only white space. The site should be 100% and the content is 960px with a 10px padding on the left and right. Here is my example:<br />
<br />
<a rel="nofollow" href="http://brookelynperry.com/dev/" target="_blank">http://brookelynperry.com/dev/</a><br />
<br />
Any suggestions?</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>andy.richin</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277971-RESOLVED-Site-Not-100-Percent-With-Browser</guid>
		</item>
		<item>
			<title>Styling a social network plugin</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?277949-Styling-a-social-network-plugin&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 12:33:02 GMT</pubDate>
			<description>Hey I recently implemented a twitter plugin that I found on my personal trainers website.  I really like the plugin, it seems to load fast and work well.  I found that the fb like box for some reason added a lot of load time onto my page so decided against implementing it and I can integrate both...</description>
			<content:encoded><![CDATA[<div>Hey I recently implemented a twitter plugin that I found on my personal trainers website.  I really like the plugin, it seems to load fast and work well.  I found that the fb like box for some reason added a lot of load time onto my page so decided against implementing it and I can integrate both via the twitter plugin anyhow.  The only problem is it has of courses been styled using css and I couldn't find the necessary coding to style the widget.  It is quite a large site and well beyond my level of expertise.  I was wondering if anyone knew how I could style it.  Also it has affected the divs on my homepage too.  <br />
 <br />
The website I took the widget from was<br />
 <br />
<a rel="nofollow" href="http://www.mikeheatlie.com/" target="_blank">http://www.mikeheatlie.com/</a><br />
 <br />
The website homepage I am trying to implement it on is<br />
 <br />
<a rel="nofollow" href="http://www.cherrietestingwebsite.org/" target="_blank">http://www.cherrietestingwebsite.org/</a><br />
 <br />
Any help as always is appreciated as it is beyond my level of expertise if I am being honest</div>

 ]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?7-CSS">CSS</category>
			<dc:creator>delboy1875</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?277949-Styling-a-social-network-plugin</guid>
		</item>
	</channel>
</rss>
