Mysidia Adoptables Support Forum

Mysidia Adoptables Support Forum (http://www.mysidiaadoptables.com/forum/index.php)
-   Webmasters Area (http://www.mysidiaadoptables.com/forum/forumdisplay.php?f=14)
-   -   Opinions Please (http://www.mysidiaadoptables.com/forum/showthread.php?t=3891)

Tequila 12-05-2012 04:16 PM

Opinions Please
 
This is still a Work In Progress!
I'm running a test on how this new site looks. I also want opinions on the information provided, and the basic set up.

http://wip.guild-ed.com - not the final URL, but please bear with it.

If you can think of anything that I'm missing please feel free to post it. Or if you think of any questions for a FAQ please let me know.

Thanks in advance!

Hall of Famer 12-05-2012 04:51 PM

It looks quite cute and unique I must say, if theres anything you can make it better, well... You may want to add something to the background that surrounds the main block so it does not look blank. Thats just me though, the site is well-designed already so its difficult to be picky. XD

Tequila 12-08-2012 08:43 AM

Hm, I was thinking about somehow adding in fish and other things you'd see in a river, and that when you scroll it makes them "swim" around the content block.

I could also do a less transparent border section... where did I find that code again. ;3

I was thinking though, for new versions of the script (when it comes to templates) we could use the scrollbar code like I have on site. ;3

powerchaos 12-08-2012 10:28 AM

the site looks nice
it is easy to navigate

the only part that is missing are seo links , but that is work for later

here you have a code you can use for the links in case you switch to seo links
put it in htacces , and be sure that mod_rewrite is enabled

Code:

RewriteEngine On
Options +FollowSymLinks #is not always needed , if it provide erros then disable it
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^about/([a-zA-Z0-9_-]+)$ about.php?$1

to use , just type in www.yoursite/about/storm

then the storm page will open

for the other pages use the same way

on that way you can keep the page in a single page and let the users think it are differend pages (also better for google )

Greetings From PowerChaos

Tequila 12-12-2012 06:19 PM

Quote:

Originally Posted by powerchaos (Post 25178)
the site looks nice
it is easy to navigate

the only part that is missing are seo links , but that is work for later

here you have a code you can use for the links in case you switch to seo links
put it in htacces , and be sure that mod_rewrite is enabled

Code:

RewriteEngine On
Options +FollowSymLinks #is not always needed , if it provide erros then disable it
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^about/([a-zA-Z0-9_-]+)$ about.php?$1

to use , just type in www.yoursite/about/storm

then the storm page will open

for the other pages use the same way

on that way you can keep the page in a single page and let the users think it are differend pages (also better for google )

Greetings From PowerChaos

I'd have to see how it would work with this style of coding:
PHP Code:

<?php if(!isset($_POST['submit'])) { ?>
<h1>lightningmermaid.me Policies</h1>
<p>Thank you for visiting <b>http://www.lightningmermaid.me</b>.</p>
<p align="center">Please choose the policy you wish to read about.<br />
<a href="?fairuse"><img src="images/fairuse.png" alt="Fair Use Policy" /></a> <a href="?privacy"><img src="images/privacy.png" alt="Privacy Policy" /></a> <a href="?stock"><img src="images/stockpolicy.png" alt="Stock Photography Restrictions" /></a> <a href="?booking"><img src="images/bookingpolicy.png" alt="Booking Policy" /></a>
<? } if($_SERVER['QUERY_STRING'] == "fairuse") { ?>

The file ends with this string as well:
PHP Code:

<?php } include('footer.php'); ?>


Hall of Famer 12-12-2012 10:54 PM

Well by looking at the above code in html file makes me more convinced that we should use Smarty for this product. PHP as a templating language just cant get more ugly, writing PHP code in conjunction with HTML is gonna make the script look so unreadable.

Tequila 12-13-2012 12:22 PM

Quote:

Originally Posted by Hall of Famer (Post 25377)
Well by looking at the above code in html file makes me more convinced that we should use Smarty for this product. PHP as a templating language just cant get more ugly, writing PHP code in conjunction with HTML is gonna make the script look so unreadable.

Yeah, this variant is very messy. I may change tactics though, who knows. I've always admired the page.php?section statement though. ;3

Hall of Famer 12-13-2012 12:35 PM

Well with Smarty things will get a lot neater, consider this:

PHP Code:

<html>
  <
head>
      <
title>{$browser_title}</title
  </
head>
  <
body>
       <
p>{$banner_image}</p>
       <
h1>{$document_title}</h1>
       <
p>{$document_content}</p>
  </
body>
</
html

Without smarty you write:

PHP Code:

<html>
  <head>
      <title><?php echo $browser_title?></title> 
  </head>
  <body>
       <p> <?php echo $banner_image?></p>
       <h1><?php echo $document_title?></h1>
       <p><?php echo $document_content;?></p>
  </body>
</html>

Now it should be all clear. XD PHP is not a good templating language, although it can be used as one(lol its main focus is the server-side programming). With Smarty, the code becomes shorter and more importantly, more pleasant to the eye. XD

Tequila 12-13-2012 12:45 PM

Hmm, I may see how smarty likes my mermaid site. I finally came up with a tail design I like (yes this will be me actually swimming in a mermaid tail! I promise pics and video as soon as I get the projects done!) that is viewable here http://lightningmermaid.tumblr.com/post/37802436810

Hall of Famer 12-13-2012 02:40 PM

Oh great, have fun playing with Smarty. Once you get used to it you'd be eager to implement in every template you create. XD


All times are GMT -5. The time now is 06:46 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.