Free and Premium WordPress Plugins & Themes Forums WordPress Themes Aquentro Check Availability box background color and remove icon in page title
- This topic has 8 replies, 2 voices, and was last updated 4 years, 6 months ago by Andre Flores.
- AuthorPosts
- March 18, 2020 at 12:27 am #931625TOTH TÓTH SZALAIParticipant
Hi,
How can I change the background color (now is black with opacity) of the Check Availability box in the header?
How can I remove the icon below each page title?
Thanks,
ImreMarch 18, 2020 at 3:52 pm #931949Andre FloresModeratorHi, Toth!
Add the following code under Appearance ->Customize ->Additional CSS:
.homepage-widget-area { background: rgba(34,34,34,.85); }
Replace 34,34,34, with any desired color. In the above code .85 stands for opacity, you may also increase/decrease it if needed.
As for removing icon below each page title, use the following code:
body.single .site-main .entry-header::after, body.page .site-main .entry-header::after, .site-main .page-header::after { content: none; background: none; }
Best regards,
AndreApril 17, 2020 at 9:23 pm #943471TOTH TÓTH SZALAIParticipantHi,
I have other question about Check Availability box in the header:
How i am able to check the text colors?
for example: Fecha de llegada, fecha de salida.. (Arrival date, departure date).Thanks
Imre
April 20, 2020 at 2:17 pm #944256Andre FloresModeratorHi, Imre!
Simply add the following code under Appearance ->Customize ->Additional CSS:
.homepage-widget-area .mphb_sc_search-form > p label, .homepage-widget-area .mphb-booking-form > p label, .homepage-widget-area .mphb_widget_search-form > p label { color: #9f9f9f; }
Replace #9f9f9f with any desired color.
Regards,
AndreApril 20, 2020 at 5:34 pm #944307TOTH TÓTH SZALAIParticipantHi Andre,
Thank you very much but i refer the part where you click on to choose the dates.
Thanks
April 20, 2020 at 5:57 pm #944340TOTH TÓTH SZALAIParticipantI mean this part:
HomeApril 22, 2020 at 3:23 pm #945194Andre FloresModeratorHi, Imre!
Thank you for clarification. Add the following code instead then:
.homepage-widget-area .mphb_sc_search-form select, .homepage-widget-area .mphb_sc_search-form input[type="text"], .homepage-widget-area .mphb-booking-form select, .homepage-widget-area .mphb-booking-form input[type="text"], .homepage-widget-area .mphb_widget_search-form select, .homepage-widget-area .mphb_widget_search-form input[type="text"] { color: #d4d4d4; }
Replace #d4d4d4 with any desired color.
Regards,
AndreApril 22, 2020 at 5:34 pm #945236TOTH TÓTH SZALAIParticipantHi Andre!
I tried but not working. Still i have the original color.
Regards,
ImreApril 23, 2020 at 2:34 pm #945662Andre FloresModeratorHi, Imre!
Try adding !important declaration to the color value:
color: #d4d4d4 !important;
If this does not work, kindly submit a request at: https://support.motopress.com/hc/en-us/requests/new, providing temporary access to your Dashboard, so we take a closer look at the issue.
Regards,
Andre - AuthorPosts
- You must be logged in to reply to this topic.