wldwil
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact Forms] Ability to turn off admin notification of signupsCan we at least change to who the notifications are sent. I am a web builder and not the client and do not want them. It is plugging up my inbox.
- This reply was modified 9 years ago by wldwil.
Forum: Plugins
In reply to: [Easing Slider] flash or have a ball loading between each slideJust an update. The issue is not resolved, but…
I unchecked “Enable Lazy Loading.” This reduced the length of flash and ball, but there is still a flash between each of the slides. I counted 9-10 sites I will have to redo with sliders if I cannot get this fixed.
Forum: Plugins
In reply to: [Connections Business Directory] Page 3 of directory giving error messageThanks!
I have this done. I clicked support and landed here first.
Forum: Themes and Templates
In reply to: [Customizr] Customizr – Replace or add to top border with imageI started here because it states,
The basic support included when your purchase one of our themes or plugins does not include customization services like :
Reviewing and fixing errors in a custom code (php, css, javascript, …) you’ve included in your theme.
Writing code snippets to solve problems like re-designing web page elements, changing colors, changing fonts, moving a block from one place to another, adding analytics script, …Is this something I should contact them about anyway?
Forum: Fixing WordPress
In reply to: Twenty Twelve mobile navigation colors are grayI found:
.main-navigation a { color: #5e5e5e; }added to child theme (worked when I placed it near the top.
.main-navigation a { color: white !important; }The challenge was what to look for. In case others need help. I used chrome tools, but it only showed me the hover color info. Using this as a search in the main theme style sheet found the code right above it.
thanks
Forum: Plugins
In reply to: [Custom Share Buttons with Floating Sidebar] Would like to see a RSS buttonWill do. Thanks for the update, I’ll let the client know.
OK, SO I switched to CSS, which gives me a bix white area now, but at least it is vertical and not black horizontal. But something still is not working right. I am using:
.site-header h1 a { background-image: url(http://sflawgb.com/wp-content/uploads/2015/07/logo.jpg); background-size: contain; background-repeat: no-repeat; color: transparent; line-height: 80px; } .site-header h1 a:hover { color: transparent; } .site-header h2 { display: none; }So, I figured out that the problem with the logo is that it is not resizing to fit the phone. I still do not know how to correct this.
Any thoughts?
Forum: Themes and Templates
In reply to: phone number dial on cell phone when tapped.Hi Jan,
That was my guess also. But, the problem is I do not know where to do this. I see it in chrome tools, but cannot find a location in the theme.
AWESOME!
It worked and this is why I recommend ECWID to my customers.
I am working on three more websites that will be using them:
Craft Store
Metal Art
Beard oil and waxThanks
Forum: Plugins
In reply to: [WP Easy Columns] How to leave first column blank?Did you try adding spaces? I just did a test and got this to work.
[ezcol_1half] [/ezcol_1half] [ezcol_1half_end]Half Column[/ezcol_1half_end]Forum: Themes and Templates
In reply to: Social Media Icons in header going behind headerFantastic!
Overflow is not an item I have used in the past. I guess I will have to study up on this one.
Thanks for the input.
Forum: Plugins
In reply to: [RSSImport] Trying to get the Read More clicakbleI have removed the snippet for now in order to not have to explain to my client why it looks the way it does. I still would like help with it.
The problem is that instead of showing a clickable “Read More” it shows, Read more
This is where the link should go to and not be typed out. Any thoughts?
Forum: Themes and Templates
In reply to: [AccessPress Parallax] How to align center site logoHi,
I think I got it and still have some of my hair left.
Try:
element.style { margin-left: auto; margin-right: auto; display: block; }Forum: Themes and Templates
In reply to: [AccessPress Parallax] How to align center site logoHave you had any luck yet? I am looking to do the same thing. None of this works, but I tried CSS
img.site-logo { margin-left: 23.55rem; }But it creates a horizontal scroll on a mobile device. It may need some type of screen class unless I am already going down the wrong path
img.site-logo { margin-left: 23.55rem; } @media screen and (max-width: 600px) { img.site-logo { margin-left: 0; } }I also tried a float center, since float: right; moved it over to the right.
img.site-logo { float: center; }I tried to wrap my image in header.php with center and right. Center did nothing and right went almost all the way right.
<div style="float:right;"> /* image infomration here */ </div>Maybe this will help you down the path. Please post back if you figure it out.