MyBB Community Forums

Full Version: footer hyperlinks
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2015-05-17, 06:42 PM)Jack.D Wrote: [ -> ]You are using paragraphs as a menu? Change the footer template for "one" to match that of the other footer links here's an example:


<ul>
      <li><a href="http://www.facebook.com/codjng" target="_blank" original-title="">Facebook</a></li>
</ul>

Alright I did that, only thing is now they are bulleted and still are the same color

(2015-05-17, 06:42 PM)Jack.D Wrote: [ -> ]You are using paragraphs as a menu? Change the footer template for "one" to match that of the other footer links here's an example:


<ul>
      <li><a href="http://www.facebook.com/codjng" target="_blank" original-title="">Facebook</a></li>
</ul>


Fixed it, just changed the class from "one" to "two". Thanks
Add the following css to square.css

.one ul {
  margin: 0;
  padding: 0;
}

.one ul li {
  	list-style: none;
  	display: block;
  	padding: 2px 0;
  	margin: 0;
}

.one ul li a:link, .one ul li a:visited {
  	text-decoration: none;
  	color: rgba(255, 255, 255, 0.5);
  	transition: all 0.5s ease;
}

.one ul li a:hover, .one ul li a:active {
  	color: rgba(255, 255, 255, 1);
  	transition: all 0.5s ease;
}
Pages: 1 2