custom theme problems

death180

Seasoned Veteran
Joined
Jul 3, 2009
Messages
4,338
Reaction score
0
FP$
1,767
So i made this theme: http://dsd.fi.st/

But there are a few issues,

Around the forums and the stats boxes it is a blueish border.. What do i change to get rid of that, what is that "element" so to speak, called?

Like the got .thead and stuff like that.

BTW: That theme is a work in progress.
 
Find these. They're back to back (use the Advanced CSS editor).

Code:
.pagination a {
	border: 1px solid #81A2C4;
}

.pagination .pagination_current {
	background: #F5F5F5;
	border: 1px solid #81A2C4;
	font-weight: bold;
}

Your culprit is the border: 1px solid #81A2C4; lines. If you want to remove it, just delete the entire line, but you could always change the border colour to a grey or a black. Hope that helps.
 
junaid said:
Who designed it for you?
I have created this myself. Based off of the default theme.

And el canadiano, it was under .tborder again, but thanks for helping!
 
As for your custom theme though, it looks like you have a start. Here's one suggestion that I think is a well-kept secret on MyBB themes.

Tahoma > Verdana.
 
Nope. It's all done individually on CSS.

Find in all instances:
Code:
font-family: Verdana, Arial, Sans-Serif;

Replace with:
Code:
font-family: Tahoma, Verdana, Arial, Sans-Serif;
 
what about the bottom above the copyrights but under the stats. I little blue outline on that box.
 
BUMP! Same question..

Here is what is in the box i am talking about..
Contact Us | Your Website | Return to Top | Return to Content | Lite (Archive) Mode | RSS Syndication

I want to change the box border color, i have looked but had no luck.
 
Here's the culprit.

Find the .bottommenu section.
Code:
.bottommenu {
	background: #efefef;
	color: #000000;
	border: 1px solid #4874a3;
	padding: 10px;
}

Change #4874a3 to whatever you want. I found that by going to view source and finding the div that surrounds it, seeing class="bottommenu". Anyways, good luck.
 
Back
Top Bottom