I must admit, styling is not my strong suit and I could use some help. On my CSS page, I need the MasterPage Navigation bar to be on the left side. However, when I click on a link to go to a different page, I want the content to show up in the middle while keeping the navigation on the left.
Is this more than just a styling issue? If so, please lend me a hand.
Below is my ASP code:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="~/MasterPage.master.cs" Inherits="MasterPage" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
...
I know it may seem basic to some, but I've hit a roadblock with styling.
Body
{
}
Aside
{
}
Footer
{
}
Any assistance would be greatly appreciated. I understand this may be simple for some, but I could really use a helping hand.
Thank you!
EDIT: Currently, everything is aligned on the left side. The content from other pages appears alongside the navigation bar. I'm struggling to center it.