Click here to Skip to main content
15,900,589 members
Home / Discussions / Web Development
   

Web Development

 
QuestionWeb API needed or not?! Pin
Amr.Mohammad8721-Jan-16 22:38
Amr.Mohammad8721-Jan-16 22:38 
AnswerRe: Web API needed or not?! Pin
F-ES Sitecore22-Jan-16 0:49
professionalF-ES Sitecore22-Jan-16 0:49 
GeneralRe: Web API needed or not?! Pin
Amr.Mohammad8722-Jan-16 2:06
Amr.Mohammad8722-Jan-16 2:06 
GeneralRe: Web API needed or not?! Pin
F-ES Sitecore22-Jan-16 2:15
professionalF-ES Sitecore22-Jan-16 2:15 
GeneralRe: Web API needed or not?! Pin
Amr.Mohammad8722-Jan-16 4:36
Amr.Mohammad8722-Jan-16 4:36 
QuestionAngularJS or JQuery? Pin
Jassim Rahma16-Jan-16 9:28
Jassim Rahma16-Jan-16 9:28 
SuggestionRe: AngularJS or JQuery? Pin
Kornfeld Eliyahu Peter16-Jan-16 9:55
professionalKornfeld Eliyahu Peter16-Jan-16 9:55 
AnswerRe: AngularJS or JQuery? Pin
Thomas Daniels17-Jan-16 0:52
mentorThomas Daniels17-Jan-16 0:52 
GeneralRe: AngularJS or JQuery? Pin
Jassim Rahma17-Jan-16 8:12
Jassim Rahma17-Jan-16 8:12 
GeneralRe: AngularJS or JQuery? Pin
Thomas Daniels17-Jan-16 9:23
mentorThomas Daniels17-Jan-16 9:23 
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 

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.