Hello,
I have a site here done in Integrity: http://r73.dd4.myftpupload.com/find-a-branch/
I want to have the navbar and page titles as seen here: https://uwrgfranchise.com/why-us
with the lines going all the way across.
Can you help?
Thanks,
LF
Hi @liliaf ,
Thank you for reaching out to us. For the titles, give your content band that has the title a class e.g border-section and then add the following code in the Theme Options > CSS:
.border-section {
border-bottom: 1px solid #ccc;
}
You can then remove your CSS that you’ve added for the border i.e:
div.x-column.x-sm.vc.x-1-1 {
box-shadow: 0 6px 6px -6px #b4b4b4 !important;
max-width: 50% !important;
}
For the navbar you can make use of the following code:
.x-navbar {
box-shadow: none !important;
}
.x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a {
box-shadow: none !important;
border-bottom: 2px solid rgb(0,148,186);
}
If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.
I recommend you to watch following video that will help you to get started with CSS.
Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.
https://developers.google.com/web/tools/chrome-devtools/css/
Hope this helps!
Hello,
I have added that code to the CSS and it did not change the page. Please show how me how to do so as shown in the screengrab.
Thanks,
LF
Hi There,
Please add the Class border-section to the top content band.
And then add this to Theme Options > CSS
.border-section {
border-bottom: 1px solid #ccc;
}
Hope it helps,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.