Hi,
1- Please use this custom css code:-
.header-6 {
box-shadow: none !important;
}
2- Please provide me specific page url with issue.
div#product-img-nav.flexslider ul.slides li{margin-right:4px !important;}
3- Please paste this code at functions.php of child theme.
<?php
function sf_text_strings( $translated_text, $text, $domain ) {
$translated_text = strtolower($translated_text);
switch ( $translated_text ) {
case 'related projects' :
//please change the <strong>Your Text</strong> with you desire text.
$translated_text = __( 'Your Text', 'swiftframework' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'sf_text_strings', 20, 3 );
?>
Thanks
Mohammad