Click here to Skip to main content
15,887,485 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: AngularJS or JQuery? Pin
Beginner Luck26-Jan-16 16:16
professionalBeginner Luck26-Jan-16 16:16 
SuggestionRe: AngularJS or JQuery? Pin
Beginner Luck21-Jan-16 14:27
professionalBeginner Luck21-Jan-16 14:27 
QuestionInadvertent Cookie Stuffing - I Can't Figure Out What I'm Doing... Pin
Amanda Reaume14-Jan-16 13:39
Amanda Reaume14-Jan-16 13:39 
AnswerRe: Inadvertent Cookie Stuffing - I Can't Figure Out What I'm Doing... Pin
ZurdoDev15-Jan-16 8:34
professionalZurdoDev15-Jan-16 8:34 
GeneralRe: Inadvertent Cookie Stuffing - I Can't Figure Out What I'm Doing... Pin
Amanda Reaume15-Jan-16 16:26
Amanda Reaume15-Jan-16 16:26 
GeneralRe: Inadvertent Cookie Stuffing - I Can't Figure Out What I'm Doing... Pin
ZurdoDev16-Jan-16 1:46
professionalZurdoDev16-Jan-16 1:46 
QuestionShowing article to right of left hand menu.... Pin
richardlatter12-Jan-16 10:47
richardlatter12-Jan-16 10:47 
AnswerRe: Showing article to right of left hand menu.... Pin
Richard Deeming13-Jan-16 2:19
mveRichard Deeming13-Jan-16 2:19 
richardlatter wrote:
I've tried just about everything I can think of.

Well, you've obviously not tried very much! Smile | :)

Start by removing the width:7% from the .leftMenu ul li a rule. Then use one of the following options:

Option 1: Using float
CSS
.leftMenu
{
    float: left;
    width: 10em;
}

Demo[^]

Option 2: Using display: table
Add a wrapper <div> around the menu and article, with the CSS class wrapper.
CSS
.wrapper
{
    display: table;
    /* Optionally: */
    table-layout: fixed;
}
.wrapper > nav,
.wrapper > article
{
    display: table-cell;
}
.wrapper > nav
{
    width: 10em;
}

Demo[^]
Browser support[^]

Option 3: Using display: flex
Add a wrapper <div> around the menu and article, with the CSS class wrapper.
CSS
.wrapper
{
    display: flex;
}
.wrapper > nav
{
    width: 10em;
}

Demo[^]
Browser support[^]
Using CSS flexible boxes - CSS | MDN[^]



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Showing article to right of left hand menu.... Pin
richardlatter13-Jan-16 10:36
richardlatter13-Jan-16 10:36 
PraiseRe: Showing article to right of left hand menu.... Pin
ZurdoDev15-Jan-16 8:43
professionalZurdoDev15-Jan-16 8:43 
QuestionThe remote server returned an error: (404) Not Found. Pin
Stephen Holdorf11-Jan-16 8:21
Stephen Holdorf11-Jan-16 8:21 
AnswerRe: The remote server returned an error: (404) Not Found. Pin
F-ES Sitecore11-Jan-16 23:08
professionalF-ES Sitecore11-Jan-16 23:08 
GeneralRe: The remote server returned an error: (404) Not Found. Pin
Stephen Holdorf12-Jan-16 3:10
Stephen Holdorf12-Jan-16 3:10 
GeneralRe: The remote server returned an error: (404) Not Found. Pin
F-ES Sitecore12-Jan-16 3:13
professionalF-ES Sitecore12-Jan-16 3:13 
GeneralRe: The remote server returned an error: (404) Not Found. Pin
Stephen Holdorf12-Jan-16 3:25
Stephen Holdorf12-Jan-16 3:25 
QuestionMVC API How To: Client Callback Pin
Kevin Marois11-Jan-16 4:23
professionalKevin Marois11-Jan-16 4:23 
AnswerRe: MVC API How To: Client Callback Pin
F-ES Sitecore11-Jan-16 5:01
professionalF-ES Sitecore11-Jan-16 5:01 
GeneralRe: MVC API How To: Client Callback Pin
Kevin Marois11-Jan-16 5:18
professionalKevin Marois11-Jan-16 5:18 
QuestionFairytale about port, xdebug and phpshtorm Pin
Member 80755916-Jan-16 4:16
Member 80755916-Jan-16 4:16 
Rant[REPOST] Fairytale about port, xdebug and phpshtorm Pin
Richard Deeming6-Jan-16 4:28
mveRichard Deeming6-Jan-16 4:28 
Questionguidance to build a website Pin
Member 122470745-Jan-16 23:01
Member 122470745-Jan-16 23:01 
AnswerRe: guidance to build a website Pin
Richard MacCutchan5-Jan-16 23:04
mveRichard MacCutchan5-Jan-16 23:04 
AnswerRe: guidance to build a website Pin
Nathan Minier6-Jan-16 1:29
professionalNathan Minier6-Jan-16 1:29 
QuestionWhat are the new web development techniques? Pin
Quick Innovations- Web Design Company4-Jan-16 23:17
professionalQuick Innovations- Web Design Company4-Jan-16 23:17 
AnswerRe: What are the new web development techniques? Pin
Nathan Minier6-Jan-16 1:34
professionalNathan Minier6-Jan-16 1:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.