Forum Replies Created
-
AuthorPosts
-
ServicesWP
KeymasterEmail sent.
ServicesWP
KeymasterGood to hear; you’re welcome.
ServicesWP
KeymasterMake sure you update to the newest theme version and clear your site cache if you’re using a caching plugin. You might also need to clear your browser cache as well.
ServicesWP
KeymasterFixed!
ServicesWP
KeymasterAh, I misunderstood, but it was still good that that other thing got fixed. 🙂
Anyway, I see that you’ve added:
#container { padding-top: 5px; padding-bottom: 5px; }
To get what you want, update that to:
#container { padding: 5px; }
ServicesWP
KeymasterNo bother at all. There was actually an error with the style, and I just pushed an update with the fix.
Thanks
ServicesWP
KeymasterSee: https://serviceswp.co/topic/how-to-update-or-upgrade/
Let me know if you need more help.
ServicesWP
KeymasterOkay, good to hear.
ServicesWP
KeymasterHi Birgitte,
The hamburger is there so that you and your readers can open and close the mobile menu.
Are you not wanting a menu on mobile at all, are you wanting the hamburger to be styled differently?
It sounds like you’re seeing a cached version.
Try clearing your cache and viewing again.
If the cache is already clear and that’s what you’re seeing, try adding this to your Custom CSS:
@media(max-width:768px){#search{float:none}}
Thanks
ServicesWP
KeymasterHi Porl,
There are sidebars, but they’re just turned off my default.
The reason for this is that the modern design trend has become predominately full-width, sidebar-less designs. So, whereas the majority of support might involve helping customers hide the sidebar, it will be more occasional to help people when they want it.
You can turn sidebars back on in one of two ways:
1. On a specific page/post you can change the custom template to one with a sidebar.
or
2. Turn the sidebar back on site-wide under: ServicesPro > Features > Universal Sidebar.
Thanks
ServicesWP
KeymasterThere are two styles that affect this:
1. The description padding:
#site-description{padding:205px 5% 10%}
2. The background image size:
#header{background-size:cover}
Add under Appearance > Customize > Custom CSS and change as needed.
If you’re not sure exactly what you need to add/change, let me know more specifically what you’d like to do and I can write the code for you.
ServicesWP
KeymasterGive this a try:
#menu ul li a{font-size:16px}
ServicesWP
KeymasterYou’re welcome and thank you. Yeah, CSS is pretty cool, and you can style things up pretty easily once you get the hang of it. 🙂
ServicesWP
KeymasterHappy you got it working. There are so many things that can go wrong. Sometimes, you did everything right, but it’s just something as simple as needing to clear the cache or refresh your browser.
Yes, I’d prefer to leave support topics for others to reference in the future, but will happily delete it for you as well if you like.
Alternatively, if you’d like access to private support over email, you can upgrade to ServicesPro for a one-time fee of $20.
ServicesWP
KeymasterThis setting is for setting one Google font only.
If you would like to set all of them, add this to your custom CSS:
@import url('https://fonts.googleapis.com/css?family=Spirax'); @import url('https://fonts.googleapis.com/css?family=Cookie'); @import url('https://fonts.googleapis.com/css?family=Lobster'); @import url('https://fonts.googleapis.com/css?family=Sacramento');
Then, whenever styling one of these fonts on an element, make sure to close in single quotes like so:
h1{font-family:'Sacramento'}
Concerning Helvetica, you can just style it in without special integration as it’s a web-safe font.
-
AuthorPosts