67.2 F
Los Angeles
Sunday, May 5, 2024

Trump Lawyer Resigns One Day Before Trial To Begin

Joseph Tacopina has filed with the courts that he will not represent Donald J. Trump. The E. Jean Carroll civil case is schedule to begin Tuesday January 16,...

Judge Lewis A. Kaplan Issues Order RE Postponement

On May 9, 2023, a jury found Donald J. Trump liable for sexual assault and defamation. The jury awarded Ms. Carroll $5 million in damages. Seven months ago,...

ASUS Announces 2023 Vivobook Classic Series

On April 7, 2023, ASUS introduced five new models in the 2023 Vivobook Classic series of laptops. The top laptops in the series use the 13th Gen Intel® Core™...
WebdesignWordPressRibbon Effect for Twenty Eleven Theme

Ribbon Effect for Twenty Eleven Theme

I thought a nice ribbon would give some 3D feel to the navigation for The Chemistry Book. The idea was to get a ribbon without adding an image but to use pure CSS rules. In this case, the before and after.

The following code was added to a child theme for Twenty Eleven.

[code] #access {
background-color: #000;
border-top: 4px solid red;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
clear: both;
display: block;
float: left;
margin: 0 -20px 6px;
width: 100%;
padding-left: 40px;
}

#access:after
{
content: ‘ ‘;
position: absolute;
width: 0;
height: 0;
left: -20px;
top: 212px;
border-width: 5px 10px;
border-style: solid;
border-color: #666 #666 transparent transparent;
}

#access:before
{
content: ‘ ‘;
position: absolute;
width: 0;
height: 0;
right: -20px;
top: 212px;
border-width: 5px 10px;
border-style: solid;
border-color: #666 transparent transparent #666;
}
[/code]

Latest news

Related news