Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How Do I Make a Basic Site in Microsoft Expression Web 4?

Photoshop Design
Loyal Member
Joined
Jun 20, 2012
Messages
871
Reaction score
473
Hello, so I want to make a basic site in Microsoft Expression Web 4, but I'm not sure how. Something like this but so I can edit and play around with it.
Site - How Do I Make a Basic Site in Microsoft Expression Web 4? - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
May 13, 2012
Messages
195
Reaction score
47
I can make one from scratch :L and work with notepad++ contact me on skype or msn Luke and i will help you :)
 
Custom Title Activated
Loyal Member
Joined
May 23, 2011
Messages
1,607
Reaction score
588
You need to learn client-side languages first... (HTML5, CSS3 & JS)
Then you can start integrating server-side capabilities into your site (for this I'd recommend Node (an event driven framework for server-side js, Ruby, or Python)).

But as I said, you'll need to learn your way round html5, css3, and js before you can start writing websites.
 
Newbie Spellweaver
Joined
Dec 4, 2009
Messages
73
Reaction score
4
I can make one from scratch :L and work with notepad++ contact me on skype or msn Luke and i will help you :)

He just asked for help with Microsoft Expression Web 4 (wich is a software I hate), not for you to show off..............................

...............................
 
Joined
Sep 10, 2006
Messages
2,817
Reaction score
1,417
Simple answer: you don't. WYSIWYG editors such as Microsoft Expression Web 4 are poop. Learning how to make such an easy layout wouldn't take you more than a few hours.

It's basically just a couple of divs.


PHP:
<div id="head">
navigation
</div>

<div id="content">
    <div class="left">
          image
    </div>

    <div class="right">
           main text
    </div>
</div>

<div id="footer">
footer
</div>
 
Photoshop Design
Loyal Member
Joined
Jun 20, 2012
Messages
871
Reaction score
473
Simple answer: you don't. WYSIWYG editors such as Microsoft Expression Web 4 are poop. Learning how to make such an easy layout wouldn't take you more than a few hours.

It's basically just a couple of divs.

PHP:
<div id="head">
navigation
</div>

<div id="content">
    <div class="left">
          image
    </div>

    <div class="right">
           main text
    </div>
</div>

<div id="footer">
footer
</div>


I pick up stuff really quickly, that looks pretty simple, is that all there is to it?;o
 
Joined
Sep 10, 2006
Messages
2,817
Reaction score
1,417
then there is css

PHP:
#head {
  background: red;
  height: 30px;
}

#content {
  background: blue;
}

#content .left {
  float: left;
  width: 200px;
  background: orange;
}

#content .right {
  margin-left: 210px;
  background: black;
}

#footer {
  background: yellow;
}

and that's pretty much it, make few changes here and there and your site's done
 
Last edited:
Photoshop Design
Loyal Member
Joined
Jun 20, 2012
Messages
871
Reaction score
473
then there is css

PHP:
#head {
  background: red;
  height: 30px;
}

#content {
  background: blue;
}

#content .left {
  float: left;
  width: 200px;
  background: orange;
}

#content .right {
  margin-left: 210px;
  background: black;
}

#footer {
  background: yellow;
}

and that's pretty much it, make few changes here and there and your site's done

Very helpful, thank you, foxx.
 
Joined
Jun 8, 2007
Messages
1,985
Reaction score
490
then there is css

PHP:
#head {
  background: red;
  height: 30px;
}

#content {
  background: blue;
}

#content .left {
  float: left;
  width: 200px;
  background: orange;
}

#content .right {
  margin-left: 210px;
  background: black;
}

#footer {
  background: yellow;
}

and that's pretty much it, make few changes here and there and your site's done
Lol, that is truly art.

Adding onto Foxx' response, and since you are picking things up quickly, notice the difference from some things- like class and id.
PHP:
<div id="content">
    <div class="left">
          image
    </div>

    <div class="right">
           main text
    </div>
</div>

There should only be one tag in the entire HTML document with a given id. So you should never make another div with the ID of "content." The class attribute is like the mirror image of the id attribute. You can use a class-name any number of times- for example, you can use left and right on other DIVs. You can also use multiple classes separated by a space, like so:
PHP:
...
<div id="content">
    <div class="left image"></div>

    <div class="right image"></div>
</div>
...


Please also note the "background-position-x" line in CSS for #content .right. You can play with all sorts of toys using CSS.
 
Last edited:
Back
Top