shrusid
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Themes and Templates
In reply to: [Llorix One Lite] Childe themeThis should be enough for the child theme’s function.php
<?php add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } ?>Forum: Themes and Templates
In reply to: [Llorix One Lite] Call us: very_top_header_phonejust add in this format:
<a href="tel:+15555551212">555-555-1212</a>PS: See that you got that working.
- This reply was modified 9 years, 2 months ago by shrusid.
Forum: Themes and Templates
In reply to: [Llorix One Lite] Change sidebar widthChange it’s width from col-md-4 to col-md-3 in sidebar.php
Note, you will end up having to change the column width of the main content correspondingly. Since it can get quite ugly, better to go with professional help.Add this to Additional CSS
.services-wrap > .service-box {
width: 23.4%;
}Forum: Themes and Templates
In reply to: [Llorix One Lite] Number of news displayedThis is a bad way of doing it forcefully:
Change line number 64 from
if ( $i_latest_posts % 2 == 1 ) {
to
if ( $i_latest_posts % 4 == 1 ) {
Viewing 5 replies - 1 through 5 (of 5 total)