bigdonv
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do I make a theme writable?What specifically do you want to do/alter?
What did you want your site to look like in the end?Can you provide a link and maybe a more info about what it is you would like to do?
Forum: Themes and Templates
In reply to: how do i get my background image to fit rightNice. Glad I could help.
Forum: Themes and Templates
In reply to: How to make images not stick outDoes that work in IE or do you need to use a DOM style for this in IE?
Forum: Themes and Templates
In reply to: Change size of HeaderThe header size is controlled by the padding.
Basically it is padded around your logo. SO if you wanna change the height, you gotta fandango that padding.Find:
#header { background-color:#223546; padding: 25px 35px 75px 35px; text-align: left; }The padding is the one to change. Here is how the numbers are placed…
padding: TOP RIGHT BOTTOM LEFTSO change the first and third number to adjust the height.
For example:
padding: 25px 35px 25px 35px;This will put 25px above and below the logo.
The short form for this code is this:
padding: 25px 35px;Hope that helps.
BigDForum: Themes and Templates
In reply to: how do i get my background image to fit rightWithout seeing your site or anything I will give you the code to repeat a background tile.
Find
body { margin: 0 0; padding: 0 0; font-size: 90%; /* Resets 1em to 10px */ font-family: Georgia, "Times New Roman", Verdana, Arial, Sans-Serif; background-color: #02142C; color: #02142C; text-align: center; }Change
background-color:#02142C;
tobackground: url(path to your image) 0 0 repeat;This is good for a repeated background image.
If you have one image and you want it centered, use this:
background: url(path to your image) 50% 0 no-repeat fixed;You can check out
http://www.w3schools.com/css/css_background.aspfor more info on this.
Hope that helps.
BigD