Bringing up arrow

Support Area Forums Kerygma Bringing up arrow

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question: http://comejourney.org
  • Author
    Posts
  • #32905
    Kymone Hinds
    Participant

    How can I bring the down arrow on our front page so it is visible before having to scroll down? That as well as the calendar and events link.

    Also is there a way to get a more prominent down arrow?

    Thanks

    #32909
    Bill Robbins
    Moderator

    In your Custom CSS, change this:

    
    .home #hero-section:after {
    	font-family: 'ElegantIcons';
    	content: "3b";
    	font-size: 40px;
    	position: absolute;
    	z-index: 2;
    	bottom: 10px;
    	left: 49%;
    	color: #fff;
    	font-size: 30px;
    }
    

    to this:

    
    .home #hero-section:after {
    	font-family: 'ElegantIcons';
    	content: "3";
    	font-size: 40px;
    	position: absolute;
    	z-index: 2;
    	top: 80%;
    	left: 2%;
    	color: #fff;
    	background-color: #000;
    	border-radius: 50%;
    	font-size: 30px;
    	padding: 4px 6px;
    }
    

    If you’d like to adjust the vertical position a bit more, the top: 80%; in the snippet above sets the distance from the top of the hero section as a percentage of its overall height.

    Hope that helps out,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Bringing up arrow’ is closed to new replies.