Couple of Questions on Homepage
- This topic has 3 replies, 2 voices, and was last updated 4 years, 1 month ago by
Zex.
-
AuthorPosts
-
June 2, 2019 at 9:54 pm #14215
MendingAegis
Participant1) At the top of the page, along the menu bar, there is a black box behind the page you are currently on. Is there a way to remove this? Change its color and center it?
2) In the front page boxes, there is a “read more” button, I need to change the resting background color, resting font color, hover background color, and hover font color so that it matches the rest of the boxes on site. How can I do this?
3) For the overall website, is there a way to change the overall background or “skin” color to brushed metal or a darker gray?
4) In the customize bar on WordPress, there is a contact option, what and where is this information displayed on the website? It currently has the incorrect information in it, but I want to know where is used.June 3, 2019 at 10:42 am #14236Zex
ModeratorHello, MendingAegis!
Here are the answers for you:
1. Insert the following codes into Customizing->General->Additional CSS:
/*Current Page navigation item Background color*/ .sticky-nav > li.current_page_item, body:not(.header_transparent) .sticky-nav > li.current-menu-item { background-color: #000!important; } /*Center the current Page navigation item */ .sticky-nav > li.current_page_item a:not(.sub-menu-link), .sticky-nav > li.current-menu-item a:not(.sub-menu-link){ margin-left:27px!important; }
Change the color code per your needs, or
use the “transparent” value if you want a transparent background.2. Insert the following codes into Customizing->General->Additional CSS:
#frontpage-boxes a.button{ color:#fff; background-color:#000; border-color: black!important; } #frontpage-boxes a.button:hover{ color:red; background-color:#fff; border-color: red!important; }
Change the color codes per your needs.
3. You can set the Page background -color from the Customizing->General->Pages… Pages Background color menu (I see you already found it).
but, If you want to have a Background image instead of the color,
you need to follow the next steps:3.1 Set the Pages background color to transparent.
https://prnt.sc/nwwhem3.2 Go to the Customizing->General-> Body menu and insert your Background image.
https://prnt.sc/nwwig8
https://prnt.sc/nwwj3v3.3 Insert the following code into Customizing->General->Additional CSS:
#main-wrapper { background-color: transparent!important; }
4. To learn how to use and setup a Contact Page, please check this article:
http://docs.theme-vision.com/article/setup-a-contact-page/I think that’s all you wanted for now. If you have further questions, feel free to contact us again.
Regards
June 4, 2019 at 3:57 pm #14297MendingAegis
ParticipantAnother question about the front page is there a way to make the footer transparent so that I can see the newly added background image?
RegardsJune 4, 2019 at 4:07 pm #14298Zex
ModeratorHello, MendingAegis!
Insert the next code into Customizing->General->Additional CSS:
.footer-widgets, footer[role=contentinfo]{ background-color: transparent!important; }
Regards
-
AuthorPosts
- You must be logged in to reply to this topic.