Tobias Schutter
Forum Replies Created
-
Forum: Plugins
In reply to: [Column Shortcodes] [Plugin: Column Shortcodes] i cannot do it….Try this:
[one_fourth] Header Image Read more tekst with link [/one_fourth][one_fourth] Header Image Read more tekst with link [/one_fourth][one_fourth] Header Image Read more tekst with link [/one_fourth][one_fourth_last] Header Image Read more tekst with link [/one_fourth_last]Forum: Plugins
In reply to: [Column Shortcodes] Column Shortcodes sporadically not workingRemove the <div> and </div>.
It should look like this:
[one_half] People ...bad. How do? How are phings are around? Why would they want to do so? I want to......blah [/one_half][one_half_last] this is text that I want to come last. [/one_half_last]Forum: Plugins
In reply to: [Column Shortcodes] Possible to disable this plugin for mobile devices?You could try adding the following CSS to your style.css in your theme folder.
@media screen and (max-width: 600px) { .full_width, .one_half, .one_third, .two_third, .one_fourth, .three_fourth, .one_fifth, .two_fifth, .three_fifth, .four_fifth, .one_sixth { clear: both; width: 100%; margin-left: 0; margin-right: 0; } }Forum: Plugins
In reply to: [Column Shortcodes] Background colors/images behind columnsDo you have an URL for me where I can take a look at?
Forum: Plugins
In reply to: [Column Shortcodes] Background colors/images behind columnsI am trying to avoid the use of seperate styling attributes inside the shortcode. I think it’s best to leave styling to your CSS stylesheet. I might consider adding custom classes to the column shortcodes, but I don’t want to get an over complicated UI with lots of attributes ( like bgcolor, strong, italic etc. )
Perhaps something like this:
[one_third class="red"][/one_third]Then al you would need to do is add the background styling to your stylesheet.
.red { background-color: red; }Forum: Plugins
In reply to: [Admin Columns] Column name localization supportI will have a look at this. I’ll try to address this in the next update 2.x. Thanks for reporting it and your patience.
Forum: Plugins
In reply to: [Column Shortcodes] Auto paragraph tags and break tagsWhat theme are you using?
Forum: Plugins
In reply to: [Column Shortcodes] problem using child theme with column shortcodesI think I have solved your issue in another topic, check out: http://wordpress.org/support/topic/css-shortcodes-needs-a-lot-of-work?replies=11
Forum: Plugins
In reply to: [Column Shortcodes] CSS shortcodes needs a lot of workAnother solution which will work for all themes, but is less ‘elegant’, would be to add “!important” to each CSS value.
current:
.one_half { width: 49%; margin-right: 2%; } .one_half.last_column { width: 49%; margin-right: 0px; }new:
.one_half { width: 49% !important; margin-right: 2% !important; } .one_half.last_column { width: 49% !important; margin-right: 0px !important; }Make sure to repeat this for all size: .one_third, two_third etc. etc.
Forum: Plugins
In reply to: [Column Shortcodes] CSS shortcodes needs a lot of workIt seems that your theme’s style.css is being loaded before the shortcodess.css stylesheet. This means the current styling from shortcodes.css will get priority.
The easiest/savest way to fix this for now would be to prefix the CSS. Take intheshallow’s CSS and change each line like so:
current:
.one_third { ... }new:
#content .one_third { ... }This will only work for your theme/markup, because it depends on the ID “content” to be present.
( Other options would be to load style.css at the end of you HTML header, but i don’t know if that would trigger other issues with you styling. )
Forum: Plugins
In reply to: [Column Shortcodes] problem using child theme with column shortcodesMaybe your theme applies some padding to the columns which could make them larger then intended. Try lowering the margin variable from the provided css a little bit.
Forum: Plugins
In reply to: [Column Shortcodes] Special columnsI think so, try this:
[one_half] content content [/one_half][one_half] content [/one_half][one_fourth] content [/one_fourth][one_fourth_last] content [/one_fourth_last]Forum: Plugins
In reply to: [Column Shortcodes] shortcodes adding too much spacing and tagsApparently your theme has added some additional p tags.
You could try to leave no spaces between you shortcodes, like so:
[one_half] first piece of content [/one_half][one_half_last] second piece of content [/one_half_last]Forum: Plugins
In reply to: [Column Shortcodes] Can you Nest ColumnsYes, that will work =)
Just make sure you do not use any tabs inside the editor. Best to just chain them like so:
[two_third][one_half][/one_half][one_half_last][/one_half_last][one_half][/one_half][one_half_last][/one_half_last][/two_third][one_third_last][/one_third_last]Forum: Plugins
In reply to: [Column Shortcodes] Return to single columnChanged url for the github version, download it at: https://github.com/codepress/column-shortcodes