• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How much would someone charge me to change the look and feel of SMF forums?

episodic

Lifer
Ok, go to the website here:

New website (safe for work)

Notice the link to forums at the top:

Go there to the forums:

Tell me what you'd charge me to make the two look similar. . .

The forums are SMF forums.

Also, let me know what you think - especially looks on different os's - page load times on a variety of connections, etc. And just your general thoughts.
 
Originally posted by: mercanucaribe
Your website is very effeminite. Not that there's anything wrong with that. Good luck finding a gay webmaster.

:roll:

Ok, would some useful members help?

 
Originally posted by: mercanucaribe
Your website is very effeminite. Not that there's anything wrong with that. Good luck finding a gay webmaster.

because every well-designed site has to have T&A all over right? :roll:
 
Originally posted by: Zugzwang152
Originally posted by: mercanucaribe
Your website is very effeminite. Not that there's anything wrong with that. Good luck finding a gay webmaster.

because every well-designed site has to have T&A all over right? :roll:



Thank you, I'm still thinking "Who the fark was that?"
 
Some minor color changes to your css file on the forums would make a huge difference. Give me a few minutes.
 
Change your first <tr... tag to what's listed below.

<tr style="background-color: #000000;"> from <tr style="background-color: #ffffff;">
 
I can't find the <tr syle tag anywhere? Below is the file. .

body {
background:#241E21;
}

/* Normal, standard links. */
a:link, a:visited
{
color: #005177;
background-color: transparent;
text-decoration: none;
}
a:hover
{
color: #cc3333;
background-color: transparent;
text-decoration: none;
}

/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
color: #000000;
background-color: transparent;
text-decoration: none;
}
a.nav:hover
{
font-weight: bold;
color: #cc3333;
background-color: transparent;
text-decoration: underline;
}

/* Tables should show empty cells too. */
table
{
empty-cells: show;
}

/* By default (td, body..) use Verdana in black. */
body, td
{
color: #241E21;
font-size: small;
font-family: verdana, arial, helvetica, sans-serif;
}

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea
{
font-size: 9pt;
color: #000000;
font-family: verdana, arial, helvetica, sans-serif;
background-color: #afc6db;
}

/* Checkboxes shouldn't have a background color. */
input.check
{
background-color: transparent;
}

/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
font-size: 8pt;
font-weight: normal;
color: #000000;
font-family: verdana, arial, helvetica, sans-serif;
background-color: #afc6db;
}

/* Standard horizontal rule.. */
hr
{
color: #6394bd;
background-color: transparent;
}
/* A more colorful hr.. */
.hrcolor
{
height: 1px;
border: 0;
color: #6394bd;
background-color: #6394bd;
}

/* A quote, perhaps from another post. */
.quote
{
color: #000000;
background-color: #dee7ef;
border: 1px solid black;
margin: 1px;
padding: 1px;
font-size: x-small;
}

/* A code block - maybe even PHP 😉. */
.code
{
color: #000000;
background-color: #cccccc;
border: 1px solid black;
margin: 1px;
padding: 1px;
font-size: x-small;
}

/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader
{
color: #000000;
text-decoration: none;
font-style: normal;
font-weight: bold;
font-size: x-small;
}

/* Generally, those [?] icons. */
.help
{
cursor: help;
background-color: transparent;
}

/* /me uses this a lot. */
.meaction
{
color: red;
background-color: transparent;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
width: 100%;
}

/* Highlighted text - such as search results. */
.highlight
{
background-color: yellow;
font-weight: bold;
color: black;
}

/* Alternating backgrounds... */
.windowbg
{
color: #000000;
background-color: #F5D7B4;
}
.windowbg2
{
color: #000000;
background-color: #F5D7B4;
}

/* Titles - such as table headers. */
.titlebg, tr.titlebg td, .titlebg a:link, .titlebg a:visited
{
font-weight: bold;
font-style: normal;
color: #ffffff;
background-color: #A87040;
}
.titlebg a:hover
{
color: #ffffff;
text-decoration: underline;
}

/* The category headers, page indexes, and such things. */
.catbg
{
font-weight: bold;
background-color: #F5D7B4;
background-image: url(images/catbg.gif);
color: #000000;
}

/* The borders around things. */
.bordercolor
{
background-color: #A87040;
}
.tborder
{
border: 1px solid #A87040;
}

/* Default font sizes. */
.smalltext
{
font-size: x-small;
}
.normaltext
{
font-size: small;
}
.largetext
{
font-size: large;
}
 
Back
Top