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.

simplypixie

Members
  • Joined

  • Last visited

  1. Some of your php code for dealing with the submitted form would help. For example, are you using an if else statement to check the captcha has been submitted and if so if it is correct?
  2. You need to either give the image thumbnails a class or reference images in a specific div or class as what you are doing at the moment is applying one style to all img tags. img.thumb { postition: absolute; } // Or .item img { position: absolute; } If using the first example then each img tag in your html will have to have the class assigned to it.
  3. If I am understanding this correctly, wherever you want the link to be on your site, you just need to put <a href="christmas.php">Christmas</a>
  4. I would get rid of all your position absolute styles with negative margins and place on the page using basic positioning and positive margins and padding.
  5. Well, thought this could be interesting so went to the site and signed up - now what??? I have received nothing about how I do whatever I need to do next.
  6. Your form was correct yesterday when I spent all day helping you on the web developer forum, not sure why you have changed it. Have you dumped your post data as I suggested using var_dump($_POST); at the top of your login.php page?
  7. This is a wild guess, but is the role="banner" set to be just an image somehow as your H2 tag isn't even displaying in the source code?
  8. You are missing actually running the query :-) $popout = mysql_query("SELECT * FROM 'covered_locations'") or die ('Error: '.mysql_error ());
  9. All styles should be in style.css in the theme directory. To find out which styles you need to change for the posts, load up your index page and view source then find the div id or class in the style sheet. I cannot give you a definitive answer as it all depends on the theme and what they have named their styles.
  10. Pure CSS - if you google CSS horizontal menu you will find loads of examples on how to achieve what you are looking for (including the current page effect).
  11.    Renaissance-Design reacted to a post in a topic: Idiot seeks simple php advice.
  12.    Artaex reacted to a post in a topic: Idiot seeks simple php advice.
  13. You are not aligning the text to the left and therefore the text-align: center; from the body style is still being applied. Therefore change your li within the ul to text-align: left; ul.tick li { background-image:url(../img/tick.png); background-position:0 6px; background-repeat:no-repeat no-repeat; list-style-image:initial; list-style-position:initial; list-style-type:none; font-size:1.4em; font-family:"museo 300"; font-weight:normal; line-height:1.6em;text-align: left;} By the way you also have a p tag in your left ul which is semantically incorrect: <ul class="tick"> <li>Logo Design, brand identity and strategy</li> <br/> <p>More coming soon</p> </ul> Should be: <ul class="tick"> <li>Logo Design, brand identity and strategy</li> <li>More coming soon</li> </ul> Or: <ul class="tick"> <li>Logo Design, brand identity and strategy</li> </ul> <p>More coming soon</p>
  14. You are missing an equals sign in your if statement (you need 2 to check for matches: if ($_SERVER['PHP_SELF'] == "index.php")
  15. Or if (isset($_POST) && !empty($_POST['email'])) { // Code here }
  16. Just had a quick play and love it, thank you for developing it. The only addition that I feel would be nice to see is the option to select part of the screenshot (i.e. a full screenshot of the whole page) to use as a thumbnail.
  17. Not sure if this is your problem but is definitely wrong if ($name);{ Should be if ($name) { Remove the semi-colon

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.