-
-
Hi!
I put many clients logo at the bottom of the homepage.
Unfortunately, the arrows on both sides are not visible if I haven’t the mouse cursor above it, so visitors can’t see at first that there are more clients. How can I let arrows visible all the time?Moreover, I don’t have any links on the logos but they are still clickable and send to the top of the homepage, how can I fix it?
Thank you
-
Hello,
To make the arrows always visible, add this line to your custom CSS box:
.clients_el .pagination a {opacity: 1; }To make the clients logo unclickable, go to your theme files –> \wp-content\themes\specular\vc_templates and open clients.php.
Find these lines:$output .= '<a href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'">'; $output .= wp_get_attachment_image( $client['attachment_id'], 'full' ); $output .= '</a>';and replace with this:
$output .= wp_get_attachment_image( $client['attachment_id'], 'full' );Let us know.
Best regards!
-
This reply was modified 9 years, 4 months ago by
Mirela.
-
This reply was modified 9 years, 4 months ago by
-
Thank for your answer.
I can’t tell you if it’s works to make the logo unclickable because I haven’t access to these files, a colleague will do this when he returns.
But it definitely works for the arrows, thank you very much!
-
You must be logged in to reply to this topic.