Forum replies created
Viewing 10 replies - 3,031 through 3,040 (of 3,147 total)
In reply to
Styling Pages in multipage posts
you have only two choices to get it to work. with numbers only:
Code:
<?php wp_link_pages( array(
‘before’ => ‘<div class=”pagination”>’ . __( ‘Pages:’ , ‘alora’ ),
‘after’ => ‘</div>’,
‘link_before’ => ‘<span class=”current”>’,
‘link_after’ => ‘</span>’,
‘next_or_number’ => ‘number,
‘separator’ => ‘ ‘,
‘nextpagelink’ => __( ‘Next <i class=”fa fa-angle-right”></i>’ , ‘alora’ ),
‘previouspagelink’ => __( ‘<i class=”fa fa-angle-left”></i> Previous’ , ‘alora’ ),
‘pagelink’ => ‘%’,
‘echo’ => 1
)); ?>
‘before’ => ‘<div class=”pagination”>’ . __( ‘Pages:’ , ‘alora’ ),
‘after’ => ‘</div>’,
‘link_before’ => ‘<span class=”current”>’,
‘link_after’ => ‘</span>’,
‘next_or_number’ => ‘number,
‘separator’ => ‘ ‘,
‘nextpagelink’ => __( ‘Next <i class=”fa fa-angle-right”></i>’ , ‘alora’ ),
‘previouspagelink’ => __( ‘<i class=”fa fa-angle-left”></i> Previous’ , ‘alora’ ),
‘pagelink’ => ‘%’,
‘echo’ => 1
)); ?>
or only with previous/next link:
Code:
<?php wp_link_pages( array(
‘before’ => ‘<div class=”pagination”>’ . __( ‘Pages:’ , ‘alora’ ),
‘after’ => ‘</div>’,
‘link_before’ => ‘<span class=”current”>’,
‘link_after’ => ‘</span>’,
‘next_or_number’ => ‘next’,
‘separator’ => ‘ ‘,
‘nextpagelink’ => __( ‘Next <i class=”fa fa-angle-right”></i>’ , ‘alora’ ),
‘previouspagelink’ => __( ‘<i class=”fa fa-angle-left”></i> Previous’ , ‘alora’ ),
‘pagelink’ => ‘%’,
‘echo’ => 1
)); ?>
‘before’ => ‘<div class=”pagination”>’ . __( ‘Pages:’ , ‘alora’ ),
‘after’ => ‘</div>’,
‘link_before’ => ‘<span class=”current”>’,
‘link_after’ => ‘</span>’,
‘next_or_number’ => ‘next’,
‘separator’ => ‘ ‘,
‘nextpagelink’ => __( ‘Next <i class=”fa fa-angle-right”></i>’ , ‘alora’ ),
‘previouspagelink’ => __( ‘<i class=”fa fa-angle-left”></i> Previous’ , ‘alora’ ),
‘pagelink’ => ‘%’,
‘echo’ => 1
)); ?>
In reply to
Styling Pages in multipage posts
I think it’s because you are using a text with a domain.. __(‘Next’,’alora’) ….try to use only ‘Next’ . same for the previous link
In reply to
Styling Pages in multipage posts
will try 🙂
In reply to
Space after post titles
insert in Custom CSS field and it will be fine:
Code:
.single #main .post h2 {
margin-bottom: 25px;
}
margin-bottom: 25px;
}
In reply to
Plain ul items not rendering
this will work. I tested it:
Code:
.post-content ul li:before {
content:’\f105′!important;
font-family: FontAwesome;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
border-radius: 75px;
box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
font-size: 9px;
text-align: center;
display: inline-block;
float: left;
font-style: normal;
font-weight: normal;
height: 18px;
line-height: 18px;
margin: 0 15px 0 0;
padding: 0;
text-decoration: inherit;
}
content:’\f105′!important;
font-family: FontAwesome;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
border-radius: 75px;
box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
font-size: 9px;
text-align: center;
display: inline-block;
float: left;
font-style: normal;
font-weight: normal;
height: 18px;
line-height: 18px;
margin: 0 15px 0 0;
padding: 0;
text-decoration: inherit;
}
In reply to
Best place to add Google Analytics script
please provide me your website URL where I may see the code
In reply to
testimonials
have you check the docs on how to set up testimonials with shortcodes? http://theme4press.com/alora-documentation/shortcodes/testimonial/
In reply to
Footer not displayed as expected
have you insert all those items separately?
alora get in touch -> footer 1
alora social links -> footer 2
search -> footer 3
In reply to
Plain ul items not rendering
try this:
Code:
.post-content ul li:before {
content:’\f105′;
font-family: FontAwesome;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
border-radius: 75px;
box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
font-size: 9px;
text-align: center;
display: inline-block;
float: left;
font-style: normal;
font-weight: normal;
height: 18px;
line-height: 18px;
margin: 0 0 15px;
padding: 0 0 0 25px;
margin-right: 0;
text-decoration: inherit;
width: 18px;
}
content:’\f105′;
font-family: FontAwesome;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
border-radius: 75px;
box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
font-size: 9px;
text-align: center;
display: inline-block;
float: left;
font-style: normal;
font-weight: normal;
height: 18px;
line-height: 18px;
margin: 0 0 15px;
padding: 0 0 0 25px;
margin-right: 0;
text-decoration: inherit;
width: 18px;
}
In reply to
Plain ul items not rendering
try insert this in Custom CSS:
Code:
.post-content ul li:before {
content:’\f105′;
font-family: FontAwesome;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
border-radius: 75px;
box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
font-size: 9px;
text-align: center;
}
content:’\f105′;
font-family: FontAwesome;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
border-radius: 75px;
box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
font-size: 9px;
text-align: center;
}
Viewing 10 replies - 3,031 through 3,040 (of 3,147 total)