hello, how can I edit the text that appears at the top of the search results, when making a search: “If you are not happy with the results below please do another search”
thank you!
Hi ftt123!
Please go to Appearance > Editor and open Search.php file and change the text there
Regards,
Yigit
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 767px) {
#layerslider_14 span {
font-size: 15px!important;
}}
Best regards,
Yigit
Hey!
Please edit the layers with the caption then go to Attributes panel. Add a unique css class or id selector. You can use it inside a media query on Quick CSS or custom.css to change the font size and the position of the caption on mobile or tablet view. For example, add “awesome-layer” on the classes field. Use this on Quick CSS:
@media only screen and (min-width: 768px) and (max-width: 989px) {
.awesome-layer {
font-size: 12px;
margin-left: -50px;
}
}
If that doesn’t work use this:
@media only screen and (max-width: 767px) {
.awesome-layer {
font-size: 12px;
margin-left: -50px;
}
}
Cheers!
Ismael
Hi!
Please see my post here https://kriesi.at/support/topic/remove-alternate-content-area/#post-218971
Regards,
Yigit
thank you Yigit, but that is not what I need: I would like to display the Header with Page Title, but eiditing the page title in the case of “last posts” and remove Breadcrumb Navigation….is it possible?
regards,
Hi!
You can use this plugin to change the string http://wordpress.org/plugins/codestyling-localization/
and you can remove breadcrumbs globally by adding following code to Quick CSS in Enfold theme options under Styling tab
.title_container .breadcrumb { display: none; }
Regards,
Yigit