Giulio Daprela
Forum Replies Created
-
I didn’t notice before, there’s also a hidden element in that menu. Keep the code above but add also this:
#site-navigation .screen-reader-text a { padding-bottom: 10px !important; padding-top: 10px !important; }If that doesn’t work yet let me know, and I’ll install the theme on my local pc to check personally
Add the !important directive to override the command, like this:
#site-navigation ul > li > a { padding-bottom: 5px !important; padding-top: 5px !important; }That command is very specific, it should work but let me know if it doesn’t and I’ll give you an alternative.
I’m glad to help when I can 🙂
Giulio
Hi Azi,
The code that you’ve given doesn’t work because the top margin is already at 0. You must reduce the height of the internal elements inside the header in order to reduce it further.
Try this, the current value for this element is 20px.#header-top .site-title { margin-top: 0; }You can reduce the height of the main menu in two ways, one is by adjusting the padding. I give you the code with the original values, reduce them until you get what you want
#site-navigation ul > li > a { padding-bottom: 20px; padding-top: 20px; }Another way is by reducing the font size of the social icons from the current 32px to a lower value.
Try this for example:.social-icon { font-size: 24px; }Let me know if ti works 🙂
Giulio
By the way, the other trick to make a widget disappear from a widget area when it’s added by the theme, it’s to add an empty text widget to that widget area
Hi Jayme,
if I’m not wrong the four widgets in the footer area are added automatically by the theme itself. To get rid of one or more of them you must go to appearance>widgets find the footer sidebar and add manually the widgets that you want to keep. The unwanted widget will automatically disappear.Let me know if you need more help 🙂
Giulio
Forum: Themes and Templates
In reply to: [Stargazer] Footer: getting rid of 'powered by WordPress'?Hi mashedspuds,
to get what you want you must open the file footer.php and change the message at line 18.
Remember to create a child theme and copy the new file in the child theme when you do this, or you will lose your modification at the next theme update.Let me know if you need more help.
cheers
GiulioForum: Themes and Templates
In reply to: [Virtue] Merge widget areas in footer?Hi porga,
you should probably play with the CSS display property to show/hide widget columns in the footer, and then enlarge the remaining column(s) with the width property. If you give me the link to your website it would be a pleasure to help you. 🙂Hi azish1,
normally you should be able to eliminate the top menu by simply going to the menu settings in the dashboard. You should see that there’s a menu assigned to the top bar. ‘Unassign’ that menu and you’re done.If for any reason that is not possible, then add this css code to your style.css in your child theme:
#top-bar { display: none; }As for the top header, try this code:
#header-top .site-branding { margin-bottom: 0; }Add !important after the 0 if it doesn’t work.
That’s the easiest thing to do. Adjust the value of the margin-bottom to be between 0 and 30px (which is its current value).
You can also adjust other elements to further reduce the header height, come back here and let me know if you need further help.Giulio
Forum: Themes and Templates
In reply to: [Customizr] Move the tagline to the leftSorry, was in a hurry and didn’t check 🙂
Forum: Themes and Templates
In reply to: [Customizr] Move the tagline to the leftTry this one then. It is much more specific.
header .navbar-wrapper .navbar .social-block { float: right; }The code works, it’s just a matter of trial and error to find the right combination of classes to make it work as intended. If that doesn’t work yet try to remove
header.Forum: Themes and Templates
In reply to: Changing theme on a recipe blogSo yes, you most probably will have to copy/paste all of your recipess to the normal posts or to a new custom post type, depending on how the new theme works.
You could also use the export/import functions included in WordPress to speed up the entire process but before doing that verify how the new theme works.Forum: Themes and Templates
In reply to: [Customizr] Move the tagline to the leftHi erskine78,
in fact I must say that the solution require a bit of fantasy! 🙂
You must move two elements to get the result. One is a social block which is empty but prevents the tagline from moving to the left.
Make a child theme if you don’t have it yet, then add this to your style.css.social-block { float:right; } .navbar-wrapper .navbar h2 { float: left; padding-left: 20px; text-align: left; }Let me know if it works, if it doesn’t we’ll have to add CSS classes to the commands in order to be more specific
Forum: Themes and Templates
In reply to: Change menu colour in VantageHi Petersaurus,
if I’m not wrong Vantage is a premium theme, and here we offer support only for free themes.
In any case, maybe I can help you if you share your website urlForum: Themes and Templates
In reply to: Changing theme on a recipe blogHi cleaneatingfam,
that is not a silly question and I understand your doubts.
To see whether the recipes are ported you should install the new theme, activate it, and see if the recipes are still there. If they aren’t, you can reactivate the old theme and they will be there again.
Generally speaking the content doesn’t disappear when you change theme but if the current theme uses a custom post type for the recipes, and the new theme doesn’t (or the other way around), you’ll have to copy/paste all your recipes so that the new theme can use them.
Can I ask you what theme are you using right now?Forum: Themes and Templates
In reply to: Error in creating child themeYou surely miss the reference to the parent theme in the header of the stylesheet. That is needed because a child theme cannot live without its parent theme.
If you want to simplify the whole process and see how a child theme is made, try to use
this plugin