Quick Login   
 
Register AdminFusion Tutorials
 
Featured Sponsors


One.com Domain and Hosting


Register
Forum of the Month
Australian Webmaster
fotm

A webmaster forum specifically catering for Australian site owners. We discuss site development, marketing and management issues.

Tag Cloud
Latest Threads
Forum Stats
8,054 Members
165,785 Posts
35 Users Online

Please welcome our newest member, HaMiDoZ!

Affiliates
Go Back AdminFusion » Management » Graphics and Design » SMF Theme/CSS quick help
Welcome to the AdminFusion. AdminFusion is the ultimate resource for forum administrators and moderators. With exclusive articles, interviews with the experts, free downloadable skins, and the revolutionary post exchange system - PostFusion, AdminFusion is the place to go for all of your forum needs.  By joining AdminFusion, you will become part of a thriving admin community and immediately gain access to all of these resources. Registration is fast, simple and absolutely free so please join us today!
Want more than our forums? Try these: Post Fusion Forum Matrix
Old 10-04-2006, 08:23 PM   #1

Rocket 442's Avatar

Title: Apprentice

Points: 4,366, Level: 19Points: 4,366, Level: 19Points: 4,366, Level: 19
Level up: 20%, 284 Points neededLevel up: 20%, 284 Points neededLevel up: 20%, 284 Points needed
Activity: 4%Activity: 4%Activity: 4%

Join Date: Jul 2006

Posts: 487

Location: Buffalo, NY

Rocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to behold

Recent Blog: 2008 in Review
Send a message via AIM to Rocket 442 Send a message via MSN to Rocket 442  
 
SMF Theme/CSS quick help

I changed my sites theme, and like this darker theme so far, but there is one problem, the background image doesnt repeat, and stops and turns into a blank white background. I am at 1280x1024 resolution, and I can see it even on the forum index. Heres an example:
http://www.domesticdisturbance.us/sm...p?topic=2444.0

I've tried to play around with the CSS sheet, but I dont know where it is, and can't seem to get it to change no matter what I do.

Obviously, I am not even anywhere near being a good "coder", and can't really do anything besides really basic html.

Any help on getting a soild dark grey background would be greatly appreciated
__________________
Camaro Forums || Firebird Forums
Check out vBulletin Setup for all your vBulletin SEO Questions & Tips
There is always someone faster, and in your case, that someone is Me
Reply With Quote
Old 10-04-2006, 08:58 PM   #2

Vyoma's Avatar

Title: Member

Points: 1,501, Level: 10Points: 1,501, Level: 10Points: 1,501, Level: 10
Level up: 11%, 49 Points neededLevel up: 11%, 49 Points neededLevel up: 11%, 49 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Aug 2006

Posts: 71

Location: Denver, CO, USA

Vyoma is on a distinguished road
Send a message via Yahoo to Vyoma Send a message via Skype™ to Vyoma  
 
I am not very sure about this but go to admin panel->Current Theme Settings -> Modify the style.css file. (colors, fonts, etc.).

There, in the code, you will find something similar:
Code:
body
{
   background-image: url('someimage.png');
   margin: 0px;
   padding: 0px;
}
There, add a background repeat property:
Code:
body
{
   background-image: url('someimage.png');
   background-repeat: repeat-y;
   margin: 0px;
   padding: 0px;
}
Then save it. That should work. If it does now, do let us know.
Reply With Quote
Old 10-04-2006, 09:48 PM   #3

SKETCHi's Avatar



Title: Dave's not here...

Points: 3,058, Level: 16Points: 3,058, Level: 16Points: 3,058, Level: 16
Level up: 17%, 392 Points neededLevel up: 17%, 392 Points neededLevel up: 17%, 392 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Dec 2005

Posts: 418

SKETCHi will become famous soon enough
Send a message via AIM to SKETCHi Send a message via MSN to SKETCHi  
 
I don't think I've seen that theme before, what is it called? I will have to download it to see it's stylesheet.

Also, what Vyoma posted isn't quite right. Repeating it on the Y axis will only tile it vertically, and I have a feeling it may not be under body.
Reply With Quote
Old 10-04-2006, 09:54 PM   #4

Rocket 442's Avatar

Title: Apprentice

Points: 4,366, Level: 19Points: 4,366, Level: 19Points: 4,366, Level: 19
Level up: 20%, 284 Points neededLevel up: 20%, 284 Points neededLevel up: 20%, 284 Points needed
Activity: 4%Activity: 4%Activity: 4%

Join Date: Jul 2006

Posts: 487

Location: Buffalo, NY

Rocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to behold

Recent Blog: 2008 in Review
Send a message via AIM to Rocket 442 Send a message via MSN to Rocket 442  
 
Its BlackRain, its one of the newer ones on smf's site.
__________________
Camaro Forums || Firebird Forums
Check out vBulletin Setup for all your vBulletin SEO Questions & Tips
There is always someone faster, and in your case, that someone is Me
Reply With Quote
Old 10-04-2006, 11:00 PM   #5

SKETCHi's Avatar



Title: Dave's not here...

Points: 3,058, Level: 16Points: 3,058, Level: 16Points: 3,058, Level: 16
Level up: 17%, 392 Points neededLevel up: 17%, 392 Points neededLevel up: 17%, 392 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Dec 2005

Posts: 418

SKETCHi will become famous soon enough
Send a message via AIM to SKETCHi Send a message via MSN to SKETCHi  
 
It looks as though the theme designer didn't think everything out... He has it in the body, and he has it repeating on the X axis. He must be on a lower res or something... Anyway, to add a background color is easy.

Find:
Code:
body 
{	
	background: url("images/bodybg.png") 0 0 repeat-x;
	margin: 0px;
	padding: 0 0 0 0;
}
Change to:
Code:
body 
{	
	background: url("images/bodybg.png") #616161 0 0 repeat-x;
	margin: 0px;
	padding: 0 0 0 0;
}
Reply With Quote
Old 10-04-2006, 11:33 PM   #6

Rocket 442's Avatar

Title: Apprentice

Points: 4,366, Level: 19Points: 4,366, Level: 19Points: 4,366, Level: 19
Level up: 20%, 284 Points neededLevel up: 20%, 284 Points neededLevel up: 20%, 284 Points needed
Activity: 4%Activity: 4%Activity: 4%

Join Date: Jul 2006

Posts: 487

Location: Buffalo, NY

Rocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to behold

Recent Blog: 2008 in Review
Send a message via AIM to Rocket 442 Send a message via MSN to Rocket 442  
 
Thanks SKETCHi, that worked perfect
__________________
Camaro Forums || Firebird Forums
Check out vBulletin Setup for all your vBulletin SEO Questions & Tips
There is always someone faster, and in your case, that someone is Me
Reply With Quote
Old 10-05-2006, 03:08 AM   #7

SKETCHi's Avatar



Title: Dave's not here...

Points: 3,058, Level: 16Points: 3,058, Level: 16Points: 3,058, Level: 16
Level up: 17%, 392 Points neededLevel up: 17%, 392 Points neededLevel up: 17%, 392 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Dec 2005

Posts: 418

SKETCHi will become famous soon enough
Send a message via AIM to SKETCHi Send a message via MSN to SKETCHi  
 
I can make a better fix, but you will need to edit index.template.php as well. If you want, I can get to it.

Edit: Right after posting this I thought of yet another fix... which will be easier . I will have it ready in a minute.

Edit #2: Ok, all done . Download this image and upload it to Themes/BlackRain/images and overwrite the one that is there. Now open style.css again and do the following:

Find:
Code:
body 
{	
	background: url("images/bodybg.png") #616161 0 0 repeat-x;
	margin: 0px;
	padding: 0 0 0 0;
}
Replace with:
Code:
body 
{	
	background: url("images/bodybg.png") 0 0 repeat;
	margin: 0px;
	padding: 0 0 0 0;
}
Reply With Quote
Old 10-05-2006, 05:23 AM   #8

Rocket 442's Avatar

Title: Apprentice

Points: 4,366, Level: 19Points: 4,366, Level: 19Points: 4,366, Level: 19
Level up: 20%, 284 Points neededLevel up: 20%, 284 Points neededLevel up: 20%, 284 Points needed
Activity: 4%Activity: 4%Activity: 4%

Join Date: Jul 2006

Posts: 487

Location: Buffalo, NY

Rocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to beholdRocket 442 is a splendid one to behold

Recent Blog: 2008 in Review
Send a message via AIM to Rocket 442 Send a message via MSN to Rocket 442  
 
Even better SKETCHi, w00t!
__________________
Camaro Forums || Firebird Forums
Check out vBulletin Setup for all your vBulletin SEO Questions & Tips
There is always someone faster, and in your case, that someone is Me
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

 
Posting Rules

Similar Threads
Thread Thread Starter Forum Replies Last Post
How to make quick cash with your forum. bookatechie Revenue and Advertising 9 07-05-2006 09:52 PM
Quick Reply Mike Announcements, Questions, and Feedback 15 06-20-2006 12:48 AM
Quick reply taking a while to post cpvr Announcements, Questions, and Feedback 11 06-06-2006 06:22 AM

AdminFusion

All times are GMT +1. The time now is 05:19 AM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0 © 2005-2008 AdminFusion - All Rights Reserved


From:
Title:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72