Khakaaa
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Sidebartabs embedding weirdness.Bump… ideas? Even if its just for one of my questions… any help is welcome.
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole Themeoh.. and this…
#nav {
margin: 0px 0px 0px 17px;
}Forum: Themes and Templates
In reply to: Need to change Background Color of Whole Themeadd this
#search .s {
margin-left: -22px;
}and change this
searchform .sgo {
margin: 2px 14px 0px 0px;
}i think thats all?
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole ThemeSo i might have shuffled things in my mind alittle… lets start with this..
#navi {
background: #FFFFFF;
margin: 0 auto;
}change these
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole Themeoh and change this
#footer-in {
padding: 10px 20px 5px 20px;
}Forum: Themes and Templates
In reply to: Need to change Background Color of Whole Themeok, for the navi replace this.
http://pastebin.com/hNHSYMdMand then the rest
http://pastebin.com/7UprVr4fi might be missing some parts so get ready for more editing..
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole Themewell the last link i gave you has that margin for navi that you would have to replace with the current one to get rid of the gap between the header and the content
the reason for white space in there at the sides of the content is because i put it there.. in my opinion it looks more or less stupid when the images and everything are right at the edge of the “box”
so you wanna go and change this
#content-wrap {
padding: 0px 5px 5px 5px;
}To this
#content-wrap {
padding: 0px 0px 5px 0px;
}note that these work like the point of a compass, it goes clockwise
north east south west
0px 0px 0px 0pxand it will move to that direction the ammount of pixels you want it to.. and in this case it will give more space to the sides of the content area.. or not.. depending on what values you put in.
You also forgot the footer background which can be found at the last code link as well..
or maybe you just wanted it to be like that..
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole Themeim not quite sure what you mean by that.. but you still wanna check that latest code i posted up there.. it has fix for the footer background as well as the gap between header and content.. just forget the body in that code as you figured it out already
You might also wanna change this
#navi {
width:683px;
}since currently it forces the menu to go in two rows .. the code above will let is stay in one row ( atleast with the current set of pages )
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole Themeit totally depends on the way you wanna add the image.. what did you have in mind?
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole Theme🙂 this is getting more and more interresting..
youre still missing some parts..
code and more explanations here
http://wordpress.pastebin.com/THaRwYMWForum: Themes and Templates
In reply to: Need to change Background Color of Whole ThemeReplace the stuff inside the brackets again
http://wordpress.pastebin.com/XNUKU4FP (note that i misspelled “#navi” ..dont mind about it.. just replace the stuff inside the brackets and youll do fine)
Color in the body is the background color of the whole site..
Also i noticed that currently its showing body as Empty.. so mind posting the code for Body tag once again? i think there might be an error in there…
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole ThemeAlright for me it looks ok now. You might wanna try and clear your browser cache.
wrote instructions in here for final code editing:
http://pastebin.com/a3iVk3METheres was apparently semicolon missing at the end of one line which is my bad.
That should do it.
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole Themeat first you might wanna undo everything you did.. hopefully that is possible..
add the value inside the brackets
for example .. lets say you have something like this ( not that you really do.. lets just pretend )
body {
color: #000000
font-family: Arial;
background: #ffffff;
}So what you would want to do is copy the code i wrote about “body” and replace it like so
body {
color: #000000
font-family: Arial;
background: url(http://rockstartemplate.com/headerdesign/header%20background.jpg) repeat-x top left
}do not remove or replace anything else except the code strips i wrote inside the brackets { }.
Forum: Themes and Templates
In reply to: Need to change Background Color of Whole ThemeWhat you wanna do is open up style.css of you theme and put this inside already existing body like so.
For the background in the body you might want to put your own image which also should be repeating and physical size only as wide as it takes for your pattern to repeat ..incase theres just horizontal lines you should go with 1px wide image..
Also the height of that image should be long enough to reach the bottom of your menu
So you wanna open up your themes style.css file and read more bellow.. 🙂
the code:
http://wordpress.pastebin.com/s4Wfwy6R#header tags background in there.. is up to you… use it or dont..
You wanna add everything you dont have already in your style.css file or if there already is letsay “background: ;” just replace the ones you already have there and ONLY the code between the brackets { }just search ( ctrl+f ) for example “#header” and add the code inside the brackets { } as shown in the code i wrote.
Simple enough?