FarzamF
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [evolve] Responsive mode issue with menu and bannerHi phillipwebb95 ,
i cant see your problem , can you show me a screenshot ?Forum: Themes and Templates
In reply to: [evolve] Evolve – Page Margins & Create Static Front Pageyou can add your html code in :
Appearance > Theme Option > Front Page Content Boxes > Content Box n Button
for example for adding icon :
<i class=”fa fa-cube” style=”font-size: 24px;color: black;”></i>
<i class=”fa fa-user” style=”font-size: 24px;color: black;”></i>
<i class=”fa fa-play” style=”font-size: 24px;color: black;”></i>this will show 3 icons below that pictures
Hi phillipwebb95,
you can solve this problem by replacing :
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide1_img."' alt='' />";with
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide2_img."' alt='".$evolve_bootstrap_slide2_title."' title='".$evolve_bootstrap_slide2_title."'/>";in : library/functions/basic-functions.php
line : 654&
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide2_img."' alt='' />";with
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide2_img."' alt='".$evolve_bootstrap_slide2_title."' title='".$evolve_bootstrap_slide2_title."'/>";line : 684
&
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide3_img."' alt='' />";with
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide3_img."' alt='".$evolve_bootstrap_slide3_title."' title='".$evolve_bootstrap_slide3_title."'/>";line : 714
&
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide4_img."' alt='' />";with
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide4_img."' alt='".$evolve_bootstrap_slide4_title."' title='".$evolve_bootstrap_slide4_title."'/>";line : 745
&
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide5_img."' alt='' />";with
echo "<img class='img-responsive' src='".$evolve_bootstrap_slide5_img."' alt='".$evolve_bootstrap_slide5_title."' title='".$evolve_bootstrap_slide5_title."'/>";line : 776
Forum: Themes and Templates
In reply to: [evolve] Decreasing height of Bootstrap sliderhi cklass ,
#bootstrap-slider .carousel-caption{opacity:0;-webkit-transition:all 0.4s ease-in-out;-moz-transition:all 0.4s ease-in-out;-o-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;} #bootstrap-slider .item:hover .carousel-caption{opacity:1}ad this codes in :
Appearance > Theme Option > Custom CSSForum: Themes and Templates
In reply to: [evolve] Evolve – Page Margins & Create Static Front Pagehi Elizabeth,
1-
#bootstrap-slider{margin-bottom:-40px}
add this code in :
Appearance > Theme Option > Custom css2-can you explain your question more ?
Forum: Themes and Templates
In reply to: [evolve] Categories not displaying in menuhi shorecan,
did you set the location of menu you built to Primary Menu ?
Hi Andy ,
you can modify the content box on the first page from :
Appearance > Theme Option > Front Page Content Boxesand for linking the button , change Content Box n Button in this way :
<a class="read-more btn" href="your page url">your page name</a>Hi phillipwebb95,
can you give me your site’s url so i can check your problem ?
Hi Georges_Payne,
<a class="button" href="#">Cliquer ici</a>add this code in :
Appearance > Theme Option > Bootstrap Slider > Slide n Button
Hi Raptomex ,
you have to remove header background pattern from :
Appearance > Theme Option > Styling > Header and Footer patternand set the background color from :
Appearance > Theme Option > Styling > Header and Footer colorForum: Themes and Templates
In reply to: [evolve] Full title (headline) in post sliderhi edefix,
you can solve this problem by replacing :
echo evolve_truncate($title, 40, '...');
with
echo $title;in : library/functions/basic-functions.php
line : 1343