• Hi,

    I’ve seen on quite a few websites a plugin used to create a different color Highlight bar at the end of articles like a Warning message in red or Download link in blue ect..does anybody know the name of this plugin? Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Soprano

    (@soprano)

    *bump

    you arent going to get a lot of replies since Im guessing we dont have a clue what you are talking about. Since you have “seen quite a few” maybe you ought to share one, so we dont have to guess.

    I think what you are looking for is simple css

    here is an example from the lightbreaker theme

    .alert {
    	font-size: 11px;
    	color: #191919;
    	line-height: 125%;
    	background: #FFE5BF url(images/styling/alert.gif) no-repeat 5px center;
    	font-family: Verdana, sans-serif, "Courier New";
    	display: block;
    	margin: 10px 0px 0px;
    	padding: 12px 12px 12px 25px;
    	font-weight: 400;
    	width: 80%;
    	border-top: 2px solid #FFC46A;
    	border-bottom: 2px solid #FFC46A;
    }

    you would then wrap your text in div tags

    <div class="alert">alert message</div>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘does anybody know this plugin?’ is closed to new replies.