How to Get Rid of the Pipe at End of a Menu in WordPress
Wednesday, May/29/2024
17
- 1). Navigate to "Appearance" inside the WordPress dashboard, and click "Editor" to load the Edit Themes screen. Scroll down to the "style.css" link, and click to load the style sheet file for your theme.
- 2). Locate the style rule that effects the list item tags that make up your menu:
#menu li {}
Although this code differs between every theme, you will usually find an ID or class name in front of "li" which selects the "<li>" tag in your HTML code. You will also find the border property that creates the pipe:
border-left: 1px solid colorname; - 3). Duplicate the entire style rule for the menu items, and add ":last-child" after "li":
#menu li :last-child {
border-right: 1px solid colorname;
} - 4). Change the "border" property inside the new style rule:
#menu li :last-child {
border-right: 0px solid colorname;
}
Give the border property a zero-pixel width. This suppresses the border on the right side of the menu item, therefore removing the pipe on your Web page. Update the file to save your changes.
Tags
MSDN
Microsoft Windows
Exchange server
Office
Visual Studio
Outlook
Solutions
Excel
win XP
NT
2003
technology
Microsoft Access
Excel
ffice
Powerpoint
Word
Oracle
Related Posts "Technology"
-
How Do I Get the Product Key for Windows XP Professional?
6/14/2019 8:22:00 PM
You might also like on "Technology"
What Is the Difference Between 32 Bit & 64 Bit on Windows XP?
6/14/2019 7:26:00 PM
How to Wipe Your Computer Without a Disk
6/14/2019 7:08:00 PM
How to Restore a Missing Registry
6/14/2019 8:55:00 AM
How to Make My CD Autoplay in Windows XP
6/14/2019 8:46:00 AM
How to Disable USB Ports in Windows XP
6/14/2019 8:31:00 AM
How to Use the Windows Network Repair Command to Fix Default Gateway
6/14/2019 8:21:00 AM
HP Mobile Printing Is Not Working With Citrix
6/14/2019 8:20:00 AM
How to Add a Tablet PC to Windows XP
6/13/2019 9:06:00 PM
How to Remove Backdoor.Win32.Bifrose.aej
6/13/2019 8:58:00 PM
How to Print on Backlight Media
6/13/2019 8:42:00 PM
How to Share a Folder in Windows Vista 64-Bit
6/13/2019 8:23:00 PM
How to Remove A55-S106 BIOS Password
6/13/2019 8:04:00 PM