Maria Antonietta Perna
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Login buttonI think you’d like a link on the sidebar that takes user to the login page, rather than a login button. In my view, you don’t need a submit button, just the link. If you want it to look like a button it can be styled like one with CSS. The markup would simply look like this:
In other words, you don’t need the input element in your code, which is a submit button to be used inside a form, in the specific case inside a login form.
Forum: Themes and Templates
In reply to: Changing the Height of Top Navigation BarHappy it worked! (WP is absolute genius, I’m just a CSS coder)
Forum: Themes and Templates
In reply to: Changing the Height of Top Navigation BarHi,
You could modify the margin top. In this css declaration that targets the entire navigation, modify the margin top as shown:
.menu-bizznis {
float: left;
margin-top: -45px;
overflow: hidden;
width: auto;
}Alternatively, you could add a position:relative; and then adjust the top position with a negative value. For example top: -45px; (or whatever is right for the links.
I hope it works.
Forum: Themes and Templates
In reply to: [Responsive] Where is style.css ?This is a link for the screenshot from the stylesheet url you provided:
Forum: Themes and Templates
In reply to: [Responsive] Where is style.css ?The theme is using a minified version of the original stylesheet, which I could inspect with firebug, an add-on for Firefox. In your child theme add one of the rules that I pointed out to you and see if it works.
Forum: Themes and Templates
In reply to: [Responsive] Where is style.css ?Alternatively, you might add a new rule yourself based on the title class:
.entry-title a {
color:pink;
}Forum: Themes and Templates
In reply to: [Responsive] Where is style.css ?Hi,
in line 1 of your stylesheet, you find:h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a {
font-weight: 700;
line-height: 1em;
word-wrap: break-word;
}you need to add your own color by adding:
h2 a {
color:pink;
}Forum: Themes and Templates
In reply to: Shrink space between social media icons!Hi, in the theme’s stylesheet you find this rule:
#socialmedia-container DIV.smc_icon_container {
display: block;
float: left;
margin: 0 8px 10px !important;
padding: 0 !important;
position: relative;
}You need to modify the above in your child theme’s stylesheet by adding:
#socialmedia-container DIV.smc_icon_container {
margin: 0 4px 10px !important;
}In the original the space between icons is 8px, in the new rule the space is 4px. Obviously, you’re free to adjust that value according to your taste. I hope this helps.
Forum: Themes and Templates
In reply to: Changing the Height of Top Navigation BarIn style.css, line 878, find this class:
.nav-bizznis {
clear: both;
line-height: 1.5;
width: 100%;
}add: max-height: your preferred height here and it should work. I think you’ll have to adjust the position of the links in the navigation though.
Forum: Themes and Templates
In reply to: [Clearly] How to Remove Page Comments???Have looked up this thread:
https://www.ads-software.com/support/topic/how-to-remove-comments-function-on-certain-pages?replies=10Also this thread might be useful:
https://www.ads-software.com/support/topic/theme-blogolife-remove-comments-form-from-all-pages?replies=8If the theme has an option panel or, better still, a theme customizer panel, you can do it from there. If you know some css, you might be able to do it in the stylesheet.
Forum: Themes and Templates
In reply to: [Responsive] Where is style.css ?Hi, I’m not sure about what you mean with style.css is not full. If you post a link to your WP site, I might be able to help you.