devgirl
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to separate Wrapper and footerOr rather change it back to
<div style="clear:both"></div>Forum: Themes and Templates
In reply to: How to separate Wrapper and footerok remove that and try and add this:
#wrapper{ margin-bottom:50px; }Forum: Themes and Templates
In reply to: How to separate Wrapper and footeroh right, you need to make a space between the wrapper and the footer, so just change this:
<div style="clear:both"></div>to this:
<div style="clear:both; height:40px;"></div>Forum: Themes and Templates
In reply to: How to separate Wrapper and footerI don’t see a shadow on the page, i just see that your footer is aligned to the left. I’m using firefox to view it.
Forum: Themes and Templates
In reply to: Help with different width/length of text and border in a postHi miapia, it is a bit hard to figure out exactly what you mean without seeing it, but i am really glad that you figured it out!
Forum: Themes and Templates
In reply to: How to separate Wrapper and footeri know, but which page are you specifically looking at? Because i couldn’t see where you had added the shadow.
Forum: Themes and Templates
In reply to: How to separate Wrapper and footerPlease send me the link of the page you are viewing. I have to go out now, but will be back in a few hours and will help you again then.
Forum: Themes and Templates
In reply to: How to separate Wrapper and footerThat is also easy, add this just before </div> of your wrapper tag:
<div ="wrapper"> <div style="clear:both"></div> </div>Forum: Themes and Templates
In reply to: How to separate Wrapper and footerThat’s easy to fix. Just put this into your css for your footer:
`#footer{
margin:0 auto;
}Forum: Themes and Templates
In reply to: How to separate Wrapper and footerYour footer div needs to be taken out of the wrapper div on the html of your page. Right now it is like this basically:
<div id=”wrapper”>
<div id=”footer”>
</div>
</div>and it should be like this rather:
<div id=”wrapper”>
</div><div id=”footer”>
</div>That separates the two.
You will have to change it on every .php page that has it in the wrong order, and then the css will work.
Forum: Themes and Templates
In reply to: Help with different width/length of text and border in a post.picture img{ width:700px; } .info{ width:520px; }Forum: Themes and Templates
In reply to: How to separate Wrapper and footerSorry, my links aren’t showing:
http://dimox.net/cross-browser-css3-box-shadow/
http://dev.opera.com/articles/view/cross-browser-box-shadows/Forum: Themes and Templates
In reply to: How to separate Wrapper and footerAdd this to your style.css file (anywhere is good):
#wrapper { -moz-box-shadow: 10px 10px 10px #000; /* Firefox */ -webkit-box-shadow: 10px 10px 10px #000; /* Safari, Chrome */ box-shadow: 10px 10px 10px #000; /* CSS3 */If you want it to work in IE, there are a few solutions that you can use, you’ll have to do some reading:
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Catablog vertical menuIt’s ok, it’s just that I am eyeballs deep in coding here with this website and still got a long way to go!
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] Catablog vertical menuI mean developing the website i gave you link for.