Click here to Skip to main content
15,894,313 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralRe: Account Disable request Pin
PompeyBoy33-May-11 22:22
PompeyBoy33-May-11 22:22 
GeneralRe: Account Disable request Pin
DaveAuld3-May-11 22:34
professionalDaveAuld3-May-11 22:34 
GeneralRe: Account Disable request Pin
Nish Nishant4-May-11 2:36
sitebuilderNish Nishant4-May-11 2:36 
GeneralRe: Account Disable request Pin
Chris Maunder3-May-11 23:19
cofounderChris Maunder3-May-11 23:19 
GeneralRe: Account Disable request Pin
Nish Nishant4-May-11 2:35
sitebuilderNish Nishant4-May-11 2:35 
GeneralWidth problem in QA section Pin
Toniyo Jackson3-May-11 2:49
Toniyo Jackson3-May-11 2:49 
GeneralRe: Width problem in QA section Pin
Chris Maunder13-Jun-11 19:15
cofounderChris Maunder13-Jun-11 19:15 
GeneralProgramming forums HowTo Stickies Pin
DaveAuld3-May-11 2:39
professionalDaveAuld3-May-11 2:39 
The stickies you have at the top of a each of the programming forums are still one of the niggles that bug me, they are inconsistent in the look and feel across each forum, with different content etc.

How about replacing these with a JQueryUi tab control, which could then be colour schemed with the rest of CP. This could be inserted into the forum template between the Title/Breadcrumb and the main Forum body, thus giving consistency across all the programming forums. One tab for HowTo Ask and the other How to Answer (The Ask being the default visible.

I just had a play to see what it would look like (using the tabs and css i use from my CPRepWatcher article), and think it looks way much better.

Any chance you could try it on your dev and see what you think?

HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    
    <script type="text/javascript" src="jquery/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="jquery/jquery-ui-1.8.2.custom.min.js"></script>
    <link rel="stylesheet" href="css/custom-theme/jquery-ui-1.8.2.custom.css" type="text/css" media="all" /> 

    <script type="text/javascript">
        $(function () {
            $("#tabs").tabs();
        });
    </script>
    <title>Example Forum Header HowTo: Section</title>
</head>
<body>

<div>FORUM HEADER and Breadcrumb path here...................</div>

<div id="tabs" style="font-size: 10px;">
	<ul>
		<li><a href="#tabs-1">How To Ask A Question</a></li>
		<li><a href="#tabs-2">How To Answer A Question</a></li>
	</ul>
	<div id="tabs-1">
		<p>For those new to message boards please try to follow a few simple rules when posting your question;</p>
        <ul>
            <li>Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.</li>
            <li>Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.</li>
            <li>Keep the subject line brief, but descriptive. eg "File Serialization problem"</li>
            <li>Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.</li>
            <li>Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.</li>
            <li>Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.</li>
            <li>If you are posting source code with your question, place it inside Code Block or Inline Code tags. We advise you also check the "Encode "&lt;" (and other HTML) characters when pasting" checkbox before pasting anything inside the PRE block, and make sure "Use HTML in this post" check box is checked.</li>
            <li>Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.</li>
            <li>Please do not post links to your question into an unrelated forum such as the lounge. It will be deleted. Likewise, do not post the same question in more than one forum.</li>
            <li>Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.</li>
            <li>If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums. </li>
            <li>No advertising or soliciting.</li>
            <li>We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.</li>
        </ul>
	</div>
	<div id="tabs-2">
        <p>When answering a question please;</p>
        <ul>
            <li>Read the question carefully</li>
            <li>Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.</li>
            <li>If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome.</li>
            <li>If the question is inappropriate then click the 'vote to remove message' button.</li>
            <li>Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.</li>
        </ul>
	</div>
</div>

<div>Forum Body start here.............</div>

</body>
</html>

Dave
Find Me On: Web|Facebook|Twitter|LinkedIn

Folding Stats: Team CodeProject

GeneralRe: Programming forums HowTo Stickies Pin
Chris Maunder18-May-11 9:20
cofounderChris Maunder18-May-11 9:20 
GeneralSearch Result page Pin
PompeyBoy33-May-11 2:37
PompeyBoy33-May-11 2:37 
GeneralRe: Search Result page Pin
Matthew Dennis3-May-11 13:06
sysadminMatthew Dennis3-May-11 13:06 
GeneralRe: Search Result page Pin
Chris Maunder19-Jul-11 15:19
cofounderChris Maunder19-Jul-11 15:19 
GeneralUser Memorials PinPopular
#realJSOP3-May-11 2:34
mve#realJSOP3-May-11 2:34 
GeneralRe: User Memorials Pin
Chris Meech3-May-11 4:46
Chris Meech3-May-11 4:46 
GeneralRe: User Memorials Pin
thatraja3-May-11 4:50
professionalthatraja3-May-11 4:50 
GeneralRe: User Memorials Pin
Indivara4-May-11 5:07
professionalIndivara4-May-11 5:07 
GeneralRe: User Memorials Pin
thatraja4-May-11 7:43
professionalthatraja4-May-11 7:43 
GeneralRe: User Memorials Pin
Chris Maunder12-May-11 16:24
cofounderChris Maunder12-May-11 16:24 
GeneralRe: User Memorials Pin
#realJSOP13-May-11 2:10
mve#realJSOP13-May-11 2:10 
GeneralQ/A Bug Just Occurred Pin
#realJSOP3-May-11 1:59
mve#realJSOP3-May-11 1:59 
GeneralRe: Q/A Bug Just Occurred Pin
Toniyo Jackson3-May-11 2:26
Toniyo Jackson3-May-11 2:26 
GeneralRe: Q/A Bug Just Occurred Pin
Smithers-Jones4-May-11 3:20
Smithers-Jones4-May-11 3:20 
GeneralRe: Q/A Bug Just Occurred Pin
Elina Blank4-May-11 9:43
sitebuilderElina Blank4-May-11 9:43 
GeneralRe: Q/A Bug Just Occurred Pin
#realJSOP4-May-11 11:39
mve#realJSOP4-May-11 11:39 
GeneralSmall menu bug? Pin
Johnny J.2-May-11 22:40
professionalJohnny J.2-May-11 22:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.