msapsard
Forum Replies Created
-
I spoke too soon. The problems are occurring again. I’ll try a few changes.
It is resolved.
It seems to be fixed. Thanks very much. I had to ensure there was a space in front of trigclass as below. I could not find a way to avoid <i> or in the target text, but it works. I have learnt a great deal!
[expand title=”Adult Colouring” trigclass=”boldy_mc_boldface”]Warner’s End Community Centre, Stoneycroft, Hemel Hempstead<br><i>4th Tuesday, 2-4 pm</i><br>See Map<br>Please bring your own colouring book and coloured pencils<br>Group no: 211<br>Email Group Leader[/expand]
Just for information, the above is built on a spreadsheet. The OpenOffice Calc code is below. Notice that in CONCATENATE() I use char(34) to insert quotes that carry through to TablePress. But, when testing for cell content in IF() statements ampersand is used to concatenate. Code on a second page groups the output of 120 lines into three columns.
=IF(A3=””, CONCATENATE(“[expand title=”,CHAR(34),”Your group here?”,CHAR(34),” trigclass=”,CHAR(34),”boldy_mc_boldface”,CHAR(34),”] Your group details could be here?[/expand]”), CONCATENATE(“[expand title=”,CHAR(34),A3,CHAR(34),” trigclass=”,CHAR(34),”boldy_mc_boldface”,CHAR(34),”]”, IF(C3=””,””,C3), IF(D3=””,””,”<br><i>”&D3&”</i>”), IF(E3=””,””,”<br>”&E3), IF(F3=””,””,”<br>See Map“), IF(G3=””,””,”<br>”&G3), IF(B3=””,””,”<br>Group no: “&B3),IF(B3=””,””,”<br>Email Group Leader“),”[/expand]”))
Thanks for the guidance. I have uninstalled and reinstalled TablePress and Collapse-o-matic. I unfortunately worked from your email and inserted a lot of " entries. They caused many new columns. I am reworking everything and will report back.
Forum: Themes and Templates
In reply to: Moving search box in *CHILD THEME** of Twenty Elevenalchymyth,
Thanks for the reply. Whilst composing a reply to you, I noticed that the trailing ‘}’ below was missing. The code now works./* import parent css file */
@import url(“../twentyeleven/style.css”);#branding #searchform {
position: absolute;
top: 1em;
right: 7.6%;
text-align: right;
}Forum: Themes and Templates
In reply to: Moving search box in *CHILD THEME** of Twenty ElevenI have had the same problem. Changing the top attribute in the twentyeleven css file as below works:
#branding #searchform {
position: absolute;
top: 3.8em; /* changing to say 2.0em works */
right: 7.6%;
text-align: right;
}but it does not work in the child form. How did you fix it?