raza260
Forum Replies Created
-
Forum: Themes and Templates
In reply to: submit/comments button does not appear in the site.@akramkhan179
Huh, I wonder how it got added. It may be worth looking at the original style.css for the theme to see if anything else was changed. Looks like you have other custom rules at the bottom.I was able to see your style.css file because it is sent when the browser requests your page. Without that file, my browser would have no idea how to display the HTML content that was returned. Specifically, I looked at the contact form in Google Chrome using the Developer Tools. Where your Submit button was, Chrome showed me that the input had rule “display: hidden”. I asked Chrome where this was set and it showed me the line of code in your style.css file. I deleted that line in Chrome and the button showed up. Then I sent you a contact request and added a test comment to check that it worked.
Makes sense? Let me know if you have questions. Glad you got it working.
Forum: Themes and Templates
In reply to: submit/comments button does not appear in the site.It looks like in the style.css file at the bottom, you have the rule:
input[type=”submit”] {
display: none;
}This is hiding your submit buttons. I checked the Adele theme and it doesn’t look like that was in the base install. Did you add that after? Anyway, remove that code from style.css and it works.
I’m fairly new to WordPress theming (and the support forum) so Tahoerock’s suggestion might be better.
Forum: Themes and Templates
In reply to: [Trident Lite] Logo missingHey, it looks like the settings for Trident Lite don’t get saved correctly when you upload an image logo. What fixed this issue for me was after I uploaded the logo, I clicked the toggle for a Text Logo and clicked Save And Publish. Then I clicked Image Logo and Save and Publish and that seemed to save in the DB that I want to use an image. Let me know if I’m unclear.