ktbca57
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change Button FontWhere are you seeing that? How do i change that? I don’t see any other buttons???
Forum: Fixing WordPress
In reply to: Change Button Fontyes… that’s what i was looking at before, but it shows Arial already… yet that isn’t what the buttons look like if you access the client portal page link i sent previously… here’s what the css shows for that setting:
}
.button-primary {
padding: 12px 18px;
font-size: 16px;
font-family: Arial, sans-serif;
border: none;
display: inline-block;
background: #f4890e;
color:#fff;
border-radius: 5px;
transition: background .6s ease-out;
-webkit-transition: background .6s ease-out;
-moz-transition: background .6s ease-out;
-o-transition: background .6s ease-out;
}As you can see… the font-family is already set to Arial, sans-serif… so i’m wondering what’s overriding this setting?
Any ideas? Thanks so much for your patience and help.
Forum: Fixing WordPress
In reply to: Change Button Fontok.. if you click on the link I provided above (sncoast.com) you will see three buttons at the top – all in serif font. Those buttons are in the Nav header – always – on every page. But if you click on the Client Portal button (http://sncoast.com/client-portal/) – once there, you’ll see the login button under the login fields is in Serif font.
Thanks.
Forum: Themes and Templates
In reply to: Can I have different sized Headers?Ok… so i finally figured out where to put the code mentioned above. But, that didn’t work – so someone suggested I change the settings for the featured banner… that worked GREAT as it allowed me to keep the image on the parent pages, but got rid of the placeholder on the child pages. HOWEVER… this method also removed the area at the very top of the screen that had some navigation buttons, and our logo.
How can I set this up without removing EVERYTHING from the top of the screen…
here’s the additional code change i made which got rid of the placeholder, but also got rid of the nav buttons as well:
ORIGINAL CODE:
.featured-banner {
width: 100%;
height: 250px;CHANGED TO:
.featured-banner {
width: 0;
height: 0rem;That combined with the addition of:
.page-child #kad-banner > .container > .row:first-child {
display: none;
}almost got me to where I need to be… any ideas?
Thanks!
Forum: Themes and Templates
In reply to: Can I have different sized Headers?Thanks… but do i add this to the main css or what? we had this site initially created by a vendor and now we are trying to make the changes and settings they refused to make… they used a template – so i’m not sure how to get to the css for that specific template. I have used the main css to add specific heading styles, but where the overriding settings are i can’t find.
Also, will the code above allow me to add in my own border? the Border is much shorter than the actual header… and when i’ve tried to use just the border, i have a bunch of space that remains and it stretches my border image to fit where the photo used to be.