Site Updates – Great news!
Moderator: General Moderators
Re: Site Updates – Great news!
All themes have been fixed for Chrome and Safari. Do a hard refresh and/or clear your cache if they are not rendering correctly for you now.
Re: Site Updates – Great news!
As per an earlier request, here is a small shadowed version.
Re: Site Updates – Great news!
We really appreciate that omniuni. Thanks alot.
Re: Site Updates – Great news!
PHPDN has helped me grow in my programming over the years. I came here as a newb, and although I still feel like one some times, all the help I've gotten here has made me able to help others. Giving back with a little graphics work is the least I could do!Benjamin wrote:We really appreciate that omniuni. Thanks alot.
Re: Site Updates – Great news!
"View Active Topics" had to be enabled for each forum individually. This has now been enabled so within the next day or so you should start to see topics appearing on that page.
Re: Site Updates – Great news!
CSS for the GeSHI parser has been modified. You may need to do a hard refresh or clear your cache to see the changes.
Re: Site Updates – Great news!
Great job people, looking good!
Also "view active topics" doesn't work for me either.
Also "view active topics" doesn't work for me either.
Re: Site Updates – Great news!
I see the CSS changes. If I may make a couple more suggestions:
- Add padding-left (and possibly padding-right) of 8px
- Get rid of "Syntax" at the top of the blocks
- Right align the text in the header & make it smaller - I'd suggest whatever em measurement results in 10px font.
Also, I'm not a fan of the drop shadow on the new logo. Maybe if it were lighter, but as it is it just seems to blur the edges of the words. Nice work on it nonetheless.
- Add padding-left (and possibly padding-right) of 8px
- Get rid of "Syntax" at the top of the blocks
- Right align the text in the header & make it smaller - I'd suggest whatever em measurement results in 10px font.
Also, I'm not a fan of the drop shadow on the new logo. Maybe if it were lighter, but as it is it just seems to blur the edges of the words. Nice work on it nonetheless.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Re: Site Updates – Great news!
Also, increase the height of the box
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
Re: Site Updates – Great news!
The imagery is being worked on. I agree about the shadowing. I also don't like the black against the dark headers in the prosilver themes, or the glow around the tag line, so I will be playing with those as well.
Re: Site Updates – Great news!
Added posting buttons for:
- Apache
- Bash
- CSS
- HTML
- Javascript
- MySQL
- Perl
- PHP
- Python
- XML
Re: Site Updates – Great news!
I am currently using "Avalon" and whatever version of the logo you have on there looks great. (I'm not biased.
)
Also, when you scale the logo down, I recommend using sinc (Lanczos) as the scaling algorithm.

Also, when you scale the logo down, I recommend using sinc (Lanczos) as the scaling algorithm.
Re: Site Updates – Great news!
Can youBenjamin wrote:Added posting buttons for:
- Apache
- Bash
- CSS
- HTML
- Javascript
- MySQL
- Perl
- PHP
- Python
- XML
- Make them use the same [ syntax ] tag as the PHP code button
- Put all code options in a pulldown rather than 11 separate buttons?
- Provide a button for just plain code, with no syntax highlighting?
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Re: Site Updates – Great news!
1. No, I tried but the plugin does not support this.pickle wrote:
- Make them use the same [ syntax ] tag as the PHP code button
- Put all code options in a pulldown rather than 11 separate buttons?
- Provide a button for just plain code, with no syntax highlighting?
2. Not without writing a custom plugin.
3. I believe the Text button does this.
- AbraCadaver
- DevNet Master
- Posts: 2572
- Joined: Mon Feb 24, 2003 10:12 am
- Location: The Republic of Texas
- Contact:
Re: Site Updates – Great news!
Lot's of confusing weirdness here:
echo '<a href="something.php">Click</a>';
PHP Code
PHP
HTML
<a href="something.php">Click</a>
<a href="something.php"><?php echo 'Click'; ?></a>
echo '<a href="something.php">Click</a>';
PHP Code
Code: Select all
echo '<a href="something.php">Click</a>';
Code: Select all
echo '<a href="something.php">Click</a>';
<a href="something.php">Click</a>
Code: Select all
<a href="something.php">Click</a>
Code: Select all
<a href="something.php"><?php echo 'Click'; ?></a>
mysql_function(): WARNING: This extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQLextension should be used. See also MySQL: choosing an API guide and related FAQ for more information.