Flash Buddy
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] How to make contact form responsive?I find myself relying on Simple Grid: https://simplegrid.io. Generally when I need various columns and rows for my forms I realy on Simple Grid with a healthy dose of CSS mixed in.
I created a plugin for WordPress that adds a grid building control to the visual editor that can get virtually any layout desired, but for style you’ll still need to rely on CSS:
https://flashalexander.com/simple-grid-for-wordpress/Forum: Fixing WordPress
In reply to: The site is experiencing technical difficulties.Deleted all plugins. Deleted WP themes. PHP 7.2, still:
“The site is experiencing technical difficulties.”Tried PHP 7.1, 7.0 & 5.6 – No Joy.
Rolled back to wordpress-5.1.1 – That worked.
Forum: Plugins
In reply to: [WP Store Locator] Change Font Color On Search ButtonYou should post the url so you can get help.
Lucky for us the ‘Search’ button has its own ID, so using something like this:
#wpsl-search-btn{color: #000}
Should work hunky dory ??
Forum: Fixing WordPress
In reply to: Reviews no longer showing but pagination doesYIKES! Me too rears its ugly head.
Forum: Plugins
In reply to: [Postcode Shipping Rates- WooCommerce] Broken in WooCommerce 3.2.0Damit!
Forum: Fixing WordPress
In reply to: Div-Container size-change after jumping in next lineConceptually, you don’t have a grasp on responsive design. That notwithstanding, in Divi, you can assign a CSS ID or Class which can then be targeted and thus manipulated with css.
Divi starts with a Section, then Rows (columns) are established within the Section, finally modules are added to a Row.
Generally, I start by assigning an ID to the Section. I’ll then add a css class to the row and or module I’m trying to affect.
You could force a column or module to be larger than the percentage of space it is occupying with CSS.
#mySection.myRow .mymodule{width: 1150px; height: auto; display:block;}
Elegant Themes offers free layouts for Divi. Might want to look through their library and find something that works the same or better than your vision and use that?
I’m sorry, I don’t have a demo up any longer. I thought that the plugin author would have a good handle on what I was referencing. I mean, c’mon. there are inputs, one of which is titled Image, which when displayed with a product evokes a tooltip on hover.
Lets just forget about it. I’ll find another way to skin this cat ??
Sorry ’bout that. It’s back up, but that notwithstanding, can you tell me what css class/selector can be targeted to customize the color of your popup tooltip for the image?
/wp-admin/admin.php?page=Wordfence&subpage=global_options
bottom of page: Import Export Options
@bluebearmedia Awwww c’mon man. Give me a clue. Where are they?!
I agree with you. I see the new interface designed to drive users to purchase premium, which I would do if it wasn’t so crazy expensive; $99.00, seriously?
Ditto!
FYI – Came here for the same issue a month later. ERGO it is still a problem:
“Internal error Not Found”
Oh well. Que sera sera.
Forum: Plugins
In reply to: [Protect WP Admin] Wordfence IssueNo, thank you for asking ??
Forum: Plugins
In reply to: [YOP Poll] Widen Poll?The poll appearance is controlled by css. You can override the default output. Widen the poll thus:
div#yop-poll-container-1_yp597f5e1b13235 { width: 980px!important; /* can be percent if preferred */ }
Forum: Fixing WordPress
In reply to: Admin new plugin notificationYou can override plugin css generally by using the !important declaration. ERGO:
.wp-pointer-0 {display: none !important;}