noahcryns
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Olsen Light] How to change the widget title styleYou can get what you want by using an image widget.
Then place your text and CSS that text if need be.
You can CSS pretty much anything.
Be a little flexible though.Forum: Themes and Templates
In reply to: Changing font size of custom text after title.Use CSS to change the size.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Inserting Images into PostAfter you insert the photo into the “content / text box”.. are you remembering to hit “Update”
I know it’s a basic step, but this is what it sounds like.
Forum: Themes and Templates
In reply to: [Enigma] change link colorHeader CSS =
The header CSS is:
.head-contact-info li a {
color: #000000;
}Forum: Themes and Templates
In reply to: [Customizr] Trying to get child theme working1. Have you tried a Child Theme Plugin? Maybe give it a shot
2. I haven’t had the need to go this far to get a child theme working.
Try this link:
https://www.wpbeginner.com/wp-themes/how-to-create-a-wordpress-child-theme-video/Forum: Themes and Templates
In reply to: My Gravity forms take up too much of my page.A link to your project could help me see what’s up.
Maybe place in a sidebar as a very simple solution?
Gravity form will most likely take up 100% width of the containing div. This works on mobile as well.
Forum: Themes and Templates
In reply to: [Zerif Lite] Site down after updateGo into your FTP and disable your plugin folder.
See if you can gain access.
If that doesn’t work.
“Rename your theme” on FTP… Then try to get back into your site.BTW,
Be sure to always create a backup of files and database before ever attempting an update. If all this sounds like to much for your level of WordPress, I’d recommend looking into a Managed WordPress platform. They usually keep 30 days of backups, just for this kind of thing.Forum: Themes and Templates
In reply to: [i-craft] Lightbox pluginIt sounds like you have another plugin breaking your lightbox.
Try to change your theme(2016), and see if light box works….
If light box still doesn’t work, then try to disable all plugins and see if it works with theme (2016)Forum: Themes and Templates
In reply to: [Coller] How do I center the titles to my pages?Hello,
Use the CSS below to center your Page title..page #primary-mono h1.entry-title {
text-align: center;
}Forum: Themes and Templates
In reply to: [Sparkling] Remove link from sliderCan you just not put a link in the slider area?
I’m not familiar with this theme, but in most themes, you can just remove the links and the link will disappear.
Which slider plugin is this theme using?
Sounds like you chose the “post/page slider”
Maybe try to create a new Standard SliderForum: Themes and Templates
In reply to: sidebar is in the footer! Help!Hello, your link is down.
Forum: Themes and Templates
In reply to: NEED to remove whitespace below headerHello,
Try this, but this doesn’t include the mobile CSS….div.page{
? padding: 0px 0px;
}.fl-node-56e5b606ecaa5 .fl-module-content {
? margin-top: -80px;
}Forum: Themes and Templates
In reply to: [Freak] Remove "Theme Designed by" in FooterYou will have to hide that section.
.site-info container{ display:none; }*Don’t remove or add code to the footer without creating a child theme. After updates your changes will be lost.
Hello,
This will do it. However, decide on the level of padding you want..home .lay1, .home .lay2, .home .lay3, .home .lay4, .home .lay5 {
padding: 0px 0;
}Forum: Themes and Templates
In reply to: [Coller] Grey bar next to page titleHello,
This will do it. Just the last line..page #primary-mono h1.entry-title:after {
content: “”;
display: block;
width: 96%;
height: 11px;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAMUlEQ…GbHEhCQUGBEUMSJgHShCKJLIEiiS4Bl8QmAZbEJQGSBADSZhunpas31QAAAABJRU5ErkJggg==);
border-top: none;
position: absolute;
left: 2%;
top: 36%;
z-index: 0;
background: none;
}