Buovjaga
Forum Replies Created
-
Forum: Plugins
In reply to: [FitVids for WordPress] [Plugin: FitVids for WordPress] Set a max width?Here’s a pull request with this type of functionality: https://github.com/davatron5000/FitVids.js/pull/19
I took the latest commit and replaced the plugin js with it (note it has a maxWidthDefault parameter).Yep, I thought about that, but I hope some developer is reading this and considering this as a bug report/feature request. Other people will take care of the WP site in question after I do these responsive design changes and it will be quite awkward to always hack the plugin core after updating..
I just tried with important, but no effect. Note, it is the file attachment input specifically.
input.wpcf7-form-control.wpcf7-file { width: 70px !important; }
I’ve used FF dev tools for now.. I’m also familiar with Firebug, but have not needed it for this.
Can’t you verify yourself in your own install?
Here is another thread about this issue, but it’s locked: https://www.ads-software.com/support/topic/plugin-contact-form-7-customize-file-attach-input?replies=5Chrome is a bit different it seems..
Forum: Localhost Installs
In reply to: Remote site to local, unable to fetch contentSolved by turning debugging on in wp-config.php. The cause was WP Multilingual extension (failed to import the db tables). Deactivated the plugin and content is working now.
Forum: Plugins
In reply to: No media player plugin lets me set start time of video or music! Why?I can’t get start time to work with Viper’s quicktags in any format even though I don’t have multisite.
Forum: Plugins
In reply to: Plugin emulating WP.com video embed tags with w&h?You see I have in my exported .xml both formats, oEmbed and [youtube= -style embeds, so I was thinking of how I could avoid a find&replace regexp operation for the [youtube= -ones.
Forum: Themes and Templates
In reply to: Bueno layout positions and widthsJust wanted to add that this is better:
.col-left { float: left; max-width: 720px; } .col-right { float:left;} .col-full { width: auto; max-width: 1240px; margin: 0 auto 0 50px;} /* 2.4 Content */ #content{min-height:550px;padding:0;} * html #content{height:550px;} #main{width:auto;} #main.fullwidth { width: 940px; }
Forum: Fixing WordPress
In reply to: Embedding Videos Doesn't WorkI blame Zymic – with a paid host everything went fine! Problem solved.
Forum: Fixing WordPress
In reply to: Embedding Videos Doesn't WorkoEmbedding doesn’t work for me. I installed the newest WP on a free host (Zymic) for testing purposes. I have automatic embedding enabled in the settings. Posting as admin.
I will be importing a site with posts using different styles of embedding, straight urls and like [youtube= so I would prefer to not have to manually change 400 embeds to match the syntax of a plugin like Video Quicktags.
Forum: Themes and Templates
In reply to: Bueno layout positions and widthsOK I think I got it.
.col-left { float: left; }
.col-right { float: right; }
.col-full { width: auto; max-width: 1240px; margin: 0 auto 0 50px;}/* 2.4 Content */
#content{min-height:550px;padding:0;}
* html #content{height:550px;}#main{width:auto;}
#main.fullwidth { width: 940px; }