1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Beginner website, I need some help

Discussion in 'HTML & Website Design' started by StefanM, Apr 21, 2015.

  1. #1
    Hi there ! I'm new to this forum, I'm new to webdesign and I want some help from you. ​
    I have to do a project for school, a website, and I've decided what kind of website will it be but I have some problems with the page layout .

    My website looks kinda like this http://demo.vivathemes.com/themes/sol/# without those effects for the photo.

    So my questions are :
    • How can my website adjust to different screen sizes? It's something with position but I don't know exactly ..
    • How can I make the menu so it stays the same width like the main picture, the big one ?
    • Can you give some tips for the page layout ? I've made some web pages before but none of them like the one in the link I posted so if it's not to much, I need some help

    Thank you !
     
    StefanM, Apr 21, 2015 IP
  2. pixaeiro

    pixaeiro Peon

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    #2
    Hello StefanM,

    Your website adjusts to different screen sizes using the parameters defined in the CSS files, which tell the browser how to render the HTML elements.

    You have two options to define the width of your menus, do it with CSS from scratch, or using a CSS front-end framework developed by someone else.

    I suggest you to use bootstrap3: Bootstrap is a free and open-source collection of tools for creating websites and web applications. It contains HTML- and CSS-based design templates for typography, forms, buttons, navigation and other interface components, as well as optional JavaScript extensions. The bootstrap framework aims to ease web development.
    http://getbootstrap.com/
     
    pixaeiro, Apr 28, 2015 IP
  3. free_mockups

    free_mockups Active Member

    Messages:
    98
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    98
    #3
    I believe you can now easily get a ready wordpress theme for very low cost. They would provide you all controls. So only you need to change the images, texts etc from your end. Doing changes it does not need any specific skills. Hope this would solve all your problem very easily. Those themes are already responsive.
     
    free_mockups, May 21, 2015 IP
  4. srivin

    srivin Member

    Messages:
    31
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    38
    #4
    as @free_mockups mentioned , i'm also recommending wordpress.
    To fit your site to different screen sized , you may use media query in css to do responsive design.It will be easy for you if you can use a framework for designing.
     
    srivin, May 23, 2015 IP
  5. haneyfenixe

    haneyfenixe Greenhorn

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #5
    to do responsive design you need to change media query in css file
    @media (max-width: 1350px) {and then styles go in here}
    @media (max-width: 1200px) {and then styles go in here}
    @media (max-width: 1024px) {and then styles go in here}
    @media (max-width: 860px) {and then styles go in here}
    in meta you need to put this
    <meta name="viewport" content="width=device-width, initial-scale=1">
     
    haneyfenixe, May 23, 2015 IP