Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

empek

Privileged
  • Joined

  • Last visited

Reputation Activity

  1. Like
    empek got a reaction from Stijl in The big list of HTML and code editors   
    Editor name: Coda
    Website link: http://www.panic.com/coda
    Price: $99
    Brief description:
     
    Text editor + file transfer + svn + CSS + Terminal + Books + More = Whoah.
  2. Like
    empek got a reaction from bijutoha in Good html editor   
    Ever heard of netbeans?
  3. Like
    empek got a reaction from Neil Carpenter in Problem with Slideshow   
    Works fine on Chrome for Mac.
     
    Have you tried clearing your own browser cache? Maybe you've still got WIP development code saved in there.
  4. Like
    empek got a reaction from OwenONeill in WP Log-in   
    Pretty unique usecase scenario you have here, and while I don't know how to go about it at the moment, I'll do some fiddling and see if I can come up with a way.
  5. Like
    Your links aren't loading for me, but based on kree8tor's review I would say that designing with content in mind may influence you to come up with a design solution you otherwise might have missed.
     
    Embrace the content, and seek your inner designer peace. Namaste. (LOL)
  6. Like
    empek got a reaction from TheNickyYo in web-design critique needed   
    This thread is pretty funny, but all negative comments and personal affairs aside, I'll actually give an honest review about the design:
     
    Positives:
     

    The layout is pretty good.
     
    The relativity in size of content buckets to each other looks good
     
    The design is all aligned to a set width

     
    Negatives:
     

    As you might have guessed by now, green and brown don't make a very good combination, and especially the shades you've chosen
     
    Try to make your margins consistent. Choose a distance that works, and stick to it. It's a subtle element, but it goes a long way. (margin is the distance between things like your content buckets: sidebar, main content)
     
    The shadows on elements inputs in the header are a bit large. Try making them a bit smaller and give them a 11% opacity white drop-shadow to sell the 'embedded' effect
     
    The gradients on your list items are too strong. Keep your gradients very subtle so they don't take away from the content that will be on them
     
    The background has too much detail, and since it has a pretty obvious patterned texture on it, it starts to blend with the content, and disorient

     
    Also as others have stated, next time you ask for a review of a website design, try to get some content on it, even if it's lorem ipsum.
     
    Hope that helps.
  7. Like
    empek got a reaction from snoogins in Grill my website   
    Wordpress sites rarely validate.
     
    Check out the validation for the default theme that comes pre-installed with Wordpress!
  8. Like
    empek got a reaction from itodd in Menu & Logo css code Help   
    You can use position: relative; on the banner, and have position: absolute; top: -40px; left: -40px; on the logo.
  9. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    +1 What I was about to get at.
  10. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    Ok this is my last resort, but I'm gonna wing this one:
     
    Change this:
     

    <meta charset="<?php bloginfo( 'charset' ); ?>" /> <title><?php /* * Print the <title> tag based on what is being viewed. * We filter the output of wp_title() a bit -- see * boilerplate_filter_wp_title() in functions.php. */ wp_title( '|', true, 'right' ); ?></title>
     
    To this:
     

    <title><?php wp_title();?></title> <meta charset="<?php bloginfo( 'charset' ); ?>">
  11. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    Sad but true.
  12. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    Well at least we now know that your problem is in your header.php.
     
    Get rid of everything after the <body> tag, and save it to the link please.
     
    BTW: I hope you're pasting the code you're removing somewhere safe.
  13. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    put this above wp_head();
     

    <!--[if gte IE 9]> <style type="text/css"> .gradient { filter: none; } </style> <![endif]-->
  14. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    What's you raw code like?
  15. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    For now I can still see that you have all these classes on your html tag:
     

    <html dir="ltr" lang="en-US" class=" js flexbox canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths">
  16. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    I second updating the link.
  17. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    Make that code this for now:
     

    <!DOCTYPE html> <html <?php language_attributes(); ?>> <head>
  18. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    Since when are you allowed to put a class on your <html> tag? Pretty sure that's your problem.
     
    Check this reference for supported attributes: http://www.w3schools.com/tags/tag_html.asp
  19. Like
    empek got a reaction from user-removed in This is going to be something stupid.   
    Dont suppose you can paste your code in here? A link would also be nice.
     
    I'm also assuming this is Wordpress?
  20. Like
    empek reacted to DigitalSquid in This is going to be something stupid.   
    W3C Validator says you've got a BOM hidden at the start of the code before the <Doctype> which is throwing everything off kilter. In whatever code editor you're using, completely delete EVERYTHING on the first line of your code and re-write it from scratch (no copying and pasting).
  21. Like
    empek reacted to Renaissance-Design in This is going to be something stupid.   
    Also, self-closing tags: pick a style and stick to it. You have some in your header with /> and some without, which may be causing the parse error in dev tools.
  22. Like
    empek reacted to MikeChipshop in This is going to be something stupid.   
    Did you come on here looking help? If so, why question the people that are trying to help you?
    If you update the link when you've changed what we've asked you too then we can see what the changes have done.
     
    I'm going to duck out of this thread now as i don't appreciate being ignored and questioned when i'm just trying to help you.
  23. Like
    empek got a reaction from OwenONeill in Two WP Questions?   
    Exactly what I would suggest.
     
    Once you get that sorted, you could start modifying the admin section under their role capabilities.
     
    Here's are some good articles on modifying the wordpress admin:
     
    http://codex.wordpress.org/Creating_Admin_Themes
     
    http://sixrevisions.com/wordpress/how-to-customize-the-wordpress-admin-area/
  24. Like
    empek reacted to Faevilangel in Two WP Questions?   
    To add a new functions.php file, create a new files user-functions.php, upload to your theme folder and in your functions.php file add this to the top of the file (after the <? php )
     

    include('user-functions.php');
     
    To change a user's level (responsibility) use the add_role function, which will create a new custom user role so you can still use the default WP roles. Each User Level is defined here
  25. Like
    empek got a reaction from itodd in Holding page?   
    HAH! I was going to link to the exact same thing earlier, but wasn't sure that's what he meant. +1
     
    There should be a couple of free ones floating around, but they might be called "coming soon pages". Try giving that term a google and see what you find.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.