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.

grimus

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    grimus got a reaction from teodora in Which of the following is better in security   
    Why is WP less secure? Please give us some facts about security issues.
     
  2. Like
    grimus reacted to GoldRush98 in Video auto start   
    <iframe src="http://player.vimeo.com/video/VIDEO_ID" width="WIDTH" height="HEIGHT" frameborder="0" autoplay="1" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>  
    There you go! You use the "autoplay" parameter :3
  3. Like
    grimus got a reaction from teodora in LOOKING for a team to create the next big thing   
    Google is just an input field. I can do that :-)
  4. Like
    grimus got a reaction from teodora in Finding a contractor   
    I'd like to recommend myself :-) I'm not a cheapest solution I think but I have a massive experience with web development, project management.
  5. Like
    grimus got a reaction from teodora in LOOKING for a team to create the next big thing   
    I can dance if it helps...
  6. Like
    grimus reacted to dianagosi in Film Club (not a web design related post)   
    Nooooo, that's nothing, the Mighty Booosh!!
    Should we open a new topic dedicated to series?
  7. Like
    grimus got a reaction from dianagosi in Film Club (not a web design related post)   
    Peep show series 1-8 :-)
  8. Like
    grimus got a reaction from Nillervision in Resize Images   
    You can use media queries like this:
     
    @media only screen and (max-width : 320px) { img{ width: 300px; } }  
     
    http://www.w3.org/TR/css3-mediaqueries/
  9. Like
    grimus got a reaction from teodora in Responsive Web Design Help   
    I checked your site's css and if you'd like to create a responsive design you need to forget the width: 900px and similar values. You need to use percents.
  10. Like
    grimus got a reaction from teodora in Wordpress Login details keep changing - hack   
    Did you try WP Security Scan?
  11. Like
    grimus reacted to GoldRush98 in PC or MAC?   
    Ugh... you would have to be pretty dumb to get a virus on Windows, as well. Here are some ways to get a virus on a Windows machine. If you are NOT dumb; you are considered as the biggest pirate in your very country(In my case; America).
    The majority of the people run Windows on Admin, and NOT Standard. When they run it on Admin; background processes could run without knowing when visiting certain websites, running certain applications, and installing certain programs. Opening distrusted/unknown links from emails, and vice versa. Downloading music, programs, videos, movies, etc.. Three ways to ONLY get a virus. All you have to do is stay away from PIRATING. Buy the damn thing(Movies, music, programs, etc.,) and stop being a cheap bastard.
  12. Like
    grimus got a reaction from Precise Estimating Ltd in How to add numeric captcha ?   
    You should use a honey trap with a captcha solution. Honey trap is a hidden input field and if a spam bot fills this that means the submitted data is not valid because the real user can't see this field.
     
    ZigTrap is one of the WP honey trap solutions.
  13. Like
    grimus got a reaction from teodora in What plugin are they using ?   
    (I wouldn't like to see that site but I can help you. )
     
    You can check the site's source, find the related html code and check IDs. If you're lucky the ID contains the plugin's name.
  14. Like
    grimus got a reaction from dianagosi in Which CMS is perfect for you?   
    I'm working with Drupal and WordPress. I think if you work with WordPress you need a well composed MVC solution because the plugin development support of WP is quite poor.
     
    I like both of them.
  15. Like
    grimus got a reaction from dianagosi in O'Reilly Media   
    Yeah, O'Reilly, Apress and Packtpub are great publishers.
  16. Like
    grimus reacted to rbrtsmith in Improvements Needed   
    You can build a CSS drop down menu quite easily.
    Just create a html unordered list. with your parent elements.
     
    HTML
    <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul>  
    Then you want to add in the children elements (your drop section)
    So in this example Item 2 will contain some children

    <ul> <li>Item 1</li> <li>Item 2 <ul> <li> Item 2 - First Child</li> <li> Item 2 - Second Child</li> </ul> </li><!-- ------close Item 2 li --> <li>Item 3</li> </ul>  
     
    *Note put the nested list in between the <li> and </li> of it's parent. Not after the </li>
     
    That's the markup taken care of.
     
    Now for some CSS


    ul { list-style:none; } li { display:inline; position:relative; /* required to position the child menu */ } ul ul { /* ------------- The child ul */ position:absolute; top: -9999px; left: -9999px; } ul ul li { display:block; width: auto; } li:hover ul, li:focus ul, { /* ---------- hover event that displays the child list */ top:0; left:0; }  
     
     
    You will have to play around with paddings, colours and so forth but that's the general framework of a css drop menu.

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.