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.

slicecbr

Members
  • Joined

  • Last visited

Everything posted by slicecbr

  1. both working now. i deleted then re-registered the hosting for the altoplanning website and now the form works so issue with the hosting... thanks for all the help and replies!
  2. Hi, Thanks for the reply. I followed this tutorial - http://www.dreamweavertutorial.co.uk/dreamweaver/video/contact-form-php-validation.htm I upload the exact same website to two different domains - however one works (planningcornwall) and one does not (altoplanning). By works I mean I actually receive the email, I get no errors on altoplanning on the website side. Both domains are through 123reg - is there something that end which could be causing the issue? Thanks
  3. Hi Guys, Hopefully this is a straight forward problem I'm having. Essentially, I have uploaded the same website onto two different domains (www.altoplanning.co.uk and planningcornwall.co.uk). When sending a message throught the contact form it works on the planningcornwall website but not on the altoplanning website. I can't work out why one domain works then another doesn't - as its the same website under both!? Any help would be greatly appreciated - I've spent many hours trying to work this out!... Thank you!
  4. Thanks for the reply guys - much appreciated! I used your code sash_007 and that linked it! Nice One. My CSS file is in the same folder mixed in with the header.php etc. Thanks for the tutorial link also, I think I'll need them.
  5. Thanks for the reply, I've added the following into the 'header.php' file: <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> Also tried: <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/style.css" /> But it doesn't seem to make a difference. My 'style.css' is uploaded into the theme folder with 'header.php' etc. Not sure what I'm doing wrong?
  6. hi guys If someone could let me know where I'm going wrong I would be very grateful. I'm attempting to import a static html, css website into wordpress and build a custom theme around it. I've followed this tutorial: http://thethemefoundry.com/blog/html-wordpress/ Everything seems to make sence, but I just can't figure out why my very basis theme isn't linking to the uploaded style.css. My testing website is here: http://finishme.comoj.com/ Any help would be great, as it's been driving me mad! Thanks.
  7. Dude! You are the MAN! Thanks for taking the time to look over, I really appreciate it! Thank you.
  8. Hi I'm trying to expand my skills and fallen into implementing a splash screen. I didn't make it from scratch, I followed a tutorial online. It uses mootools. Got it in so it appears and fades, however, there is a .5 - 1 second gap between it appearing. Is there a way I can get it to load instantly and fade (as it does)? I asked the OP and suggested I put the links in the <head> to the top, before any other links. However, this didn't do it. Can anyone suggest a way to get it to load instantly? Heres a link to the tutorial http://blog.cbolson.com/mootools-splash-screen/ Any help would be great! Thanks
  9. Oright guys Basically the first domain name I registered (with my first website) is due to expire tomorrow (GoDaddy) and I am looking to re-register it with 123-reg (unless there are better options?) I've not done this before, so is it as simple as registering with 123-reg and following the options provided? Thanks
  10. Thanks for the responses. I have found this code in the 'loop.php': <?php while ( have_posts() ) : the_post(); ?> <?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?> <?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'starkers' ) ) ) : ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header> <h2><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'starkers' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php starkers_posted_on(); ?> </header> <?php if ( post_password_required() ) : ?> <?php the_content(); ?> <?php else : ?> <?php $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) ); if ( $images ) : $total_images = count( $images ); $image = array_shift( $images ); $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' ); ?> <a href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a> <p><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'starkers' ), 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'starkers' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', number_format_i18n( $total_images )); ?></p> <?php endif; ?> <?php the_excerpt(); ?> <?php endif; ?> <footer> <?php if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) : ?> <a href="<?php echo get_post_format_link( 'gallery' ); ?>" title="<?php esc_attr_e( 'View Galleries', 'starkers' ); ?>"><?php _e( 'More Galleries', 'starkers' ); ?></a> | <?php elseif ( in_category( _x( 'gallery', 'gallery category slug', 'starkers' ) ) ) : ?> <a href="<?php echo get_term_link( _x( 'gallery', 'gallery category slug', 'starkers' ), 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'starkers' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a> | <?php endif; ?> <?php comments_popup_link( __( 'Leave a comment', 'starkers' ), __( '1 Comment', 'starkers' ), __( '% Comments', 'starkers' ) ); ?> <?php edit_post_link( __( 'Edit', 'starkers' ), '| ', '' ); ?> </footer> </article> <?php /* How to display posts of the Aside format. The asides category is the old way. */ ?> <?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'starkers' ) ) ) : ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?> <?php the_excerpt(); ?> <?php else : ?> <?php the_content( __( 'Continue reading →', 'starkers' ) ); ?> <?php endif; ?> <footer> <?php starkers_posted_on(); ?> | <?php comments_popup_link( __( 'Leave a comment', 'starkers' ), __( '1 Comment', 'starkers' ), __( '% Comments', 'starkers' ) ); ?> <?php edit_post_link( __( 'Edit', 'starkers' ), '| ', '' ); ?> </footer> </article> <?php /* How to display all other posts. */ ?> <?php else : ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header> <h2><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'starkers' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php starkers_posted_on(); ?> </header> <?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?> <?php the_excerpt(); ?> <?php else : ?> <?php the_content( __( 'Continue reading →', 'starkers' ) ); ?> <?php wp_link_pages( array( 'before' => '<nav>' . __( 'Pages:', 'starkers' ), 'after' => '</nav>' ) ); ?> <?php endif; ?> <footer> <?php if ( count( get_the_category() ) ) : ?> <?php printf( __( 'Posted in %2$s', 'starkers' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> | <?php endif; ?> <?php $tags_list = get_the_tag_list( '', ', ' ); if ( $tags_list ): ?> <?php printf( __( 'Tagged %2$s', 'starkers' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> | <?php endif; ?> <?php comments_popup_link( __( 'Leave a comment', 'starkers' ), __( '1 Comment', 'starkers' ), __( '% Comments', 'starkers' ) ); ?> <?php edit_post_link( __( 'Edit', 'starkers' ), '| ', '' ); ?> </footer> </article> <?php comments_template( '', true ); ?> <?php endif; // This was the if statement that broke the loop into three parts based on categories. ?> <?php endwhile; // End the loop. Whew. ?> So is this the code I should copy and paste into a file I create called 'loop-index.php' and then can start adding divs to style? Thanks
  11. I've recently embarked on making my first website via wordpress. I'm okay at HTML/CSS (still learning) but starting off with PHP - but getting there. I am using the Starkers theme and have got some pages up, getting my head round it etc. (thanks to the Chris Coyier tutorials!) From what I understand on the index page the comments are pulled in via: <?php get_template_part( 'loop', 'index' ); ?> I've been trying to style the posts on the index page, but can't quite find what file to style. From research one way is to create an 'index-post.php' file and paste some loop into it and style that? Thanks
  12. Would a WordPress based website be the best option then, rather than one designed in Dreamweaver? Thanks for the reply.
  13. static html on the current site. I am looking into making a website via WordPress, for all the plugins and dynamic content etc. but not with the current site. Thanks.
  14. Hi, Hopefully someone can help or point me in the right direction (hopefully I have put this in the right forum) I've got a website where articles are written. I think I may have to pay for a web developer to do this (I'm a newbie), but: Is there a plugin type system or something similar which allows people to write a comment on the article and give a rating, say 5 out of 10 stars, which then gets displayed at the bottom of the article with the comment, but also updates the overall article rating at the top of the page? Any help would be great thanks!
  15. That did it! +1! Thanks.
  16. Anyone able to show me the errors of my ways? Thanks
  17. I really like that ticker...feel stupid asking this but, you don't just copy and paste the code into the part of your website that you want it to appear do you? Because it doesn't show up. How would you put it into a website?
  18. You'll probably get a more informed answer soon. I'm a beginner, but when this happens, try putting 'clear:both' in the CSS of the banner DIV, or put a new DIV inbetween the header and nav bar with that CSS.
  19. hi, Been looking around the net and stumbled upon: Here If you notice the pop out facebook window, I really like the idea. But being a beginner, I wouldn't know where to start. Anybody know any similar tutorials to follow to recreate one? Thanks

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.