Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

web site looking for advice

Options
  • 31-05-2016 3:22pm
    #1
    Registered Users Posts: 242 ✭✭


    Hi,
    I am new to web dev and am still currently studying this so go easy on me. Just looking for some advice on how I can tidy up a site I have built.
    Just looking to make it a little fuller and nice to look at. It is a site I build for a elderly family member that lives a bit away from me so getting photos etc has been a major issue for me so far. this is the site www.mariesschooluniforms.com

    Thanks in advance,


«1

Comments

  • Registered Users Posts: 6,250 ✭✭✭Buford T Justice


    The only thing I can see is a placeholder for a hosting provider.


  • Registered Users Posts: 242 ✭✭Ciaran219


    The only thing I can see is a placeholder for a hosting provider.

    just seen that myself.. thats not what its meant to be :D


  • Registered Users Posts: 242 ✭✭Ciaran219


    The only thing I can see is a placeholder for a hosting provider.

    should be opening now.. im having one issue i know of that ill fix tomorrow.. If you click any tab from services to gallery and then click home or facility you get an error. Other than that it should be working now


  • Registered Users Posts: 6,250 ✭✭✭Buford T Justice


    Is this just a static html page?

    You could use something like bootstrap to add some simple styling.


  • Registered Users Posts: 6,490 ✭✭✭daymobrew


    We are also a five minute drive from the Luas Red Line in Drimnagh
    Most Luas users will not have a car :-)

    On http://www.mariesschooluniforms.com/Website2.html#heading3 (why the #heading3 anchor?) "Maries" is used twice without the apostrophe i.e. I think that it should be Marie's.

    The Family run business - make Family lowercase (to family) to be consistent with the previous sentence.

    The page has a number of html errors e.g. "long" should be "lang".

    [HTML]<img src="Images/shop-front.jpg"> <alt="Maries Fashions" title="Maries Fashions"></a> <style="width:350px;height:150px/;
    [/HTML] Remove the '>' after the image filename and the '<' before 'alt'. Then remove the '</a>' as there is no opening '<a>' tag. The "style" tag is not closed.

    The stylesheet file is empty. You should move the inline styles from the top of the html page to that file.

    Here is a short selection of errors from the style block at the top of the file:
    font-familt: Verdona, Tahama, Arial, sans-serif;
    
    Typo: should be "font-family" and "Verdona" should be "Verdana"
    P{
       #Padding: 2%;
       color: #878e63;
    }
    
    Change #Padding to "padding" (lowercase and no #).
    nav ul li {
         float: left;
    	 boarded: 1px solid #878E63;
    	 width: 15%;
     }
    
    "boarded" should be "border"

    A good text editor (I use Notepad++) will colour valid code and this makes it easier to spot typos like those above.


  • Advertisement
  • Registered Users Posts: 242 ✭✭Ciaran219


    Is this just a static html page?

    You could use something like bootstrap to add some simple styling.
    Ill take a look at that today, never heard of a bootstrap before for styling thanks.


  • Registered Users Posts: 242 ✭✭Ciaran219


    daymobrew wrote: »
    Most Luas users will not have a car :-)

    On http://www.mariesschooluniforms.com/Website2.html#heading3 (why the #heading3 anchor?) "Maries" is used twice without the apostrophe i.e. I think that it should be Marie's.

    The Family run business - make Family lowercase (to family) to be consistent with the previous sentence.

    The page has a number of html errors e.g. "long" should be "lang".

    [HTML]<img src="Images/shop-front.jpg"> <alt="Maries Fashions" title="Maries Fashions"></a> <style="width:350px;height:150px/;
    [/HTML] Remove the '>' after the image filename and the '<' before 'alt'. Then remove the '</a>' as there is no opening '<a>' tag. The "style" tag is not closed.

    The stylesheet file is empty. You should move the inline styles from the top of the html page to that file.

    Here is a short selection of errors from the style block at the top of the file:
    font-familt: Verdona, Tahama, Arial, sans-serif;
    
    Typo: should be "font-family" and "Verdona" should be "Verdana"
    P{
       #Padding: 2%;
       color: #878e63;
    }
    
    Change #Padding to "padding" (lowercase and no #).
    nav ul li {
         float: left;
         boarded: 1px solid #878E63;
         width: 15%;
     }
    
    "boarded" should be "border"

    A good text editor (I use Notepad++) will colour valid code and this makes it easier to spot typos like those above.


    I've replied to this twice with bigger replies but I keep getting a "confirm you're not a robot pop up" then nothing comments.:eek::confused:

    ill try shorter this time :)
    Appreciate the things pointed out above ill change all of that this evening. The style sheet when I copy and move to its own sheet I lost a lost of content and couldn't figure out why so had to leave it as is til I figured it out unfortunately.


  • Registered Users Posts: 2,785 ✭✭✭mightyreds


    +1 for bootstrap you can download free templates and with minimum changes have a professional looking site, but that will do nothing for the learning curve if that's what you want


  • Registered Users Posts: 242 ✭✭Ciaran219


    mightyreds wrote: »
    +1 for bootstrap you can download free templates and with minimum changes have a professional looking site, but that will do nothing for the learning curve if that's what you want

    its a bit of both to be honest, id like to learn how to do it all myself manually and then use bootstrap if you get me. Prob a long way and a pain in the arse but id like to learn it firstly


  • Registered Users Posts: 242 ✭✭Ciaran219


    Is this just a static html page?

    You could use something like bootstrap to add some simple styling.

    just looking at bootstrap now, good shout. Plenty of info on there!


  • Advertisement
  • Registered Users Posts: 6,250 ✭✭✭Buford T Justice


    Ciaran219 wrote: »
    I've replied to this twice with bigger replies but I keep getting a "confirm you're not a robot pop up" then nothing comments.:eek::confused:

    ill try shorter this time :)
    Appreciate the things pointed out above ill change all of that this evening. The style sheet when I copy and move to its own sheet I lost a lost of content and couldn't figure out why so had to leave it as is til I figured it out unfortunately.

    Did you link the CSS stylesheet correctly in the head?
    <link rel="stylesheet" type="text/css" href="{path-to-stylesheet.css}" />
    


  • Registered Users Posts: 242 ✭✭Ciaran219


    Did you link the CSS stylesheet correctly in the head?
    <link rel="stylesheet" type="text/css" href="{path-to-stylesheet.css}" />
    

    Off the top of my head I don't think so, but ill try it again later and see. I doubt I did to be honest.


  • Registered Users Posts: 6,250 ✭✭✭Buford T Justice


    Ciaran219 wrote: »
    Off the top of my head I don't think so, but ill try it again later and see. I doubt I did to be honest.

    If you're using an external stylesheet (and you should) then you need to tell the page where the sheet is located.
    You can find more information here
    http://www.w3schools.com/html/html_css.asp


  • Registered Users Posts: 242 ✭✭Ciaran219


    Having trouble with getting a background image on this new site? using bootstrap for it, below is what i have but no image is showing


    <style>
    html{
    background: url(shop.jpg) no-repeat center center fixed;
    -webskit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size: cover;
    background-size: cover;
    }
    </style>


  • Moderators, Computer Games Moderators, Technology & Internet Moderators Posts: 19,240 Mod ✭✭✭✭L.Jenkins


    I would suggest Netbeans IDE and grab yourself a few HTML5 themes you could work on.


  • Registered Users Posts: 895 ✭✭✭Dubba


    Is the shop.jpg in your Images folder?

    https://developer.mozilla.org/en-US/Learn/HTML/Multimedia_and_embedding/Images_in_HTML


    Prefixing your google queries with mdn, is a handy way of getting results from developer.mozilla.org. Better than W3Schools results imo.


  • Registered Users Posts: 242 ✭✭Ciaran219


    Dubba wrote: »
    Is the shop.jpg in your Images folder?

    https://developer.mozilla.org/en-US/Learn/HTML/Multimedia_and_embedding/Images_in_HTML


    Prefixing your google queries with mdn, is a handy way of getting results from developer.mozilla.org. Better than W3Schools results imo.


    yeah its in the same folder as the other images.. not sure what the issue is with it


  • Registered Users Posts: 6,250 ✭✭✭Buford T Justice


    Ciaran219 wrote: »
    Having trouble with getting a background image on this new site? using bootstrap for it, below is what i have but no image is showing
          <style>
    html{
          background: url(shop.jpg) no-repeat  center center fixed;
          -webskit-background-size:cover;
    	  -moz-background-size:cover;
    	  -o-background-size: cover;
    	  background-size: cover;
    }
    </style>
    

    Are you not using a stylesheet?


  • Registered Users Posts: 895 ✭✭✭Dubba


    Looks like file path is your issue.

    https://developer.mozilla.org/en-US/Learn/Getting_started_with_the_web/Dealing_with_files#File_paths

    ... the file path we'd need is images/your-image-filename. For example, your image is called shop.jpg, so the file path is images/shop.jpg

    Also, as was already mentioned, you should be using an external stylesheet.
    Have a look here for the correct formatting:

    https://developer.mozilla.org/en/docs/Web/HTML/Element/link#Including_a_stylesheet


  • Registered Users Posts: 242 ✭✭Ciaran219


    Are you not using a stylesheet?

    I am using a style sheet. I tried that code on the index.html doc and seperate on the style sheet but still no joy..


  • Advertisement
  • Registered Users Posts: 242 ✭✭Ciaran219


    Dubba wrote: »
    Looks like file path is your issue.

    https://developer.mozilla.org/en-US/Learn/Getting_started_with_the_web/Dealing_with_files#File_paths

    ... the file path we'd need is images/your-image-filename. For example, your image is called shop.jpg, so the file path is images/shop.jpg

    Also, as was already mentioned, you should be using an external stylesheet.
    Have a look here for the correct formatting:

    https://developer.mozilla.org/en/docs/Web/HTML/Element/link#Including_a_stylesheet


    Will give that a try now.


  • Registered Users Posts: 242 ✭✭Ciaran219


    @Dubba. Is it different to do this when using bootstrap?
    I've tried it different ways, path is correct. Other images on the HTML doc are working fine on the slider. Just this background header image


  • Registered Users Posts: 895 ✭✭✭Dubba


    Not to sure about bootstrap, I'm a student as well, so not much experience.

    Have you tried wrapping the url in quotes?


  • Registered Users Posts: 895 ✭✭✭Dubba


    ... like this:
    ('Images/shop.jpg');


  • Registered Users Posts: 242 ✭✭Ciaran219


    tried that yeah, my style sheet isnt linking up by the look of it, thinking bootstrap stylesheet might be causing the issue.
    I have it in my header in the HTML doc <IMG HEIGHT="600px" WIDTH="1200px" SRC="Images/shop.jpg"> and its working perfect. Its on top of where i want it, i want it in the background behind the text instead of above


  • Registered Users Posts: 895 ✭✭✭Dubba


    If your using an external style sheet, test that it works:
    body{background-color: red;}

    If this is your sites structure:

    webpage
    -index.html
    -css
    - - style.css
    - images
    - - shop.jpg

    then to reference the image on your css file you should use the following path:

    ../images/shop.png

    So that would be background: url('../images/shop.jpg');

    Google around and have a look for people asking similar questions on stackoverflow.


  • Registered Users Posts: 73,382 ✭✭✭✭colm_mcm


    Pricing

    Pricing is something that we understand is of big importance as it can be a very expensive time when your children are returning to school. Because of this we are concious that we are extremely competitive and will always strive to ensure you get value for money. We are the cheapest supplier of childrens uniforms in Dublin

    this seems unnecessarily long-winded


  • Registered Users Posts: 7,078 ✭✭✭the whole year inn


    I'm by no means an expert but have made a few sites in html and bootstrap,just on the general look of the first photo,could you take a nice photo with the shutters up and leave out the solicitors banner and the bin and the windows above the shop.

    Would you put in a googlemaps on the page and remove all the address?You should invest in a logo and put it in at the top of the page
    You should really check out bootstrap once you get your head around html/css it.Its a breeze really.


  • Registered Users Posts: 242 ✭✭Ciaran219


    I'm by no means an expert but have made a few sites in html and bootstrap,just on the general look of the first photo,could you take a nice photo with the shutters up and leave out the solicitors banner and the bin and the windows above the shop.

    Would you put in a googlemaps on the page and remove all the address?You should invest in a logo and put it in at the top of the page
    You should really check out bootstrap once you get your head around html/css it.Its a breeze really.

    Ive actually re done the site since i posted this, ive used bootstrap and its made a huge difference. The picture of the front of the shop i am still chasing them for, ( not having an easy time ). in the new site ive used the google link for the address now too.


  • Advertisement
  • Registered Users Posts: 7,078 ✭✭✭the whole year inn


    Ciaran219 wrote: »
    Ive actually re done the site since i posted this, ive used bootstrap and its made a huge difference. The picture of the front of the shop i am still chasing them for, ( not having an easy time ). in the new site ive used the google link for the address now too.

    Surprised you didnt go with a Slider on the first page,just have to get a few nice pictures and looks better,what ever suits tho.
    Keep up the good work.


Advertisement