None
0 Points
1 Post
Mar 04, 2018 05:23 AM|BarefacedBear|LINK
<%@ Page Title="HOME" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="page1-home.aspx.cs" Inherits="SCM.page1_home" %> <asp:Content ID="Content1" ContentPlaceHolderID="MainContentPlaceHolder" runat="server">
<link href="../CSS/Button.css" rel="stylesheet" />
<div class="button"> <asp:Button ID="Button3" runat="server" BackColor="green" BorderStyle="None" Font-Size="Medium" style="z-index: 1; left: 536px; top: 357px; position: absolute; right: 630px; height: 32px; width: 121px;" Text="LOGIN" OnClick="Button3_Click" CssClass="Button" /> <asp:Button ID="Button4" runat="server" BackColor="green" BorderStyle="None" Font-Size="Medium" style="z-index: 1; top: 482px; position: absolute; left: 539px; height: 34px; width: 124px;" Text="REGISTER" OnClick="Button4_Click" /> </asp:Content>
</div>
I want to add CSS effect to these buttons in a child page of a MasterPage but still after adding the CSS link the effects aren't getting changed. Please help me out !!
Thank you.
None
0 Points
1 Post
CSS for Buttons
Mar 04, 2018 05:23 AM|BarefacedBear|LINK
<%@ Page Title="HOME" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="page1-home.aspx.cs" Inherits="SCM.page1_home" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContentPlaceHolder" runat="server">
<link href="../CSS/Button.css" rel="stylesheet" />
<div class="button">
<asp:Button ID="Button3" runat="server" BackColor="green" BorderStyle="None" Font-Size="Medium" style="z-index: 1; left: 536px; top: 357px; position: absolute; right: 630px; height: 32px; width: 121px;" Text="LOGIN" OnClick="Button3_Click" CssClass="Button" />
<asp:Button ID="Button4" runat="server" BackColor="green" BorderStyle="None" Font-Size="Medium" style="z-index: 1; top: 482px; position: absolute; left: 539px; height: 34px; width: 124px;" Text="REGISTER" OnClick="Button4_Click" />
</asp:Content>
</div>
I want to add CSS effect to these buttons in a child page of a MasterPage but still after adding the CSS link the effects aren't getting changed. Please help me out !!
Thank you.