karsten007
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] How to style content of the sidebar using CSS?Thank you very much for your advise.
Yes, this is exactly what I will do…using text widget and <p> Tags edting with CSS.
Have a good weekend!
Forum: Themes and Templates
In reply to: [Hueman] how can i change H1 to H2, in home?Why do you want to change H1 to H2 on your home page?
Forum: Themes and Templates
In reply to: [Hueman] How To Create Menu In Sidebar?Hello,
I am also trying to figure out how to create a child menu in the sidebar.
What I have achieved now you can see here:
http://goo.gl/z7S46vMy question is: How can I add more pages to the child menu on the left side?
I have defined now a parent attribute called “Impressum”
But how can I add children pages and grandchildren pages?
I have created a menu which I have placed in a sidebar widget. This is the menu below the “test”-menu. How can I move the pages from the widget menu into the child menu?
Thanks to everybody for help!
Regards,
KarstenForum: Themes and Templates
In reply to: [Hueman] How to style content of the sidebar using CSS?Thank you very much for help which I really appreciate.
As you can see here
I used
<span class="colored-text">Kurz-Info:</span>and for the other highlighted words I used a paragraph tag:
<p class="colored-text">Software-CD (Handelsunterstützung)</p>Which would you recommenend for me to use?
span tag or p tag?
I also could add some margin-top in order to avoid the paragraphs which are now dividing the green words. Would this be a correct apporach?
Forum: Themes and Templates
In reply to: [Hueman] How to get rid off this ^ on all my pages and articles?Hi DGLauren,
well, I think there are two possibilities to add a caption or notice that says “Back to top”.
First: You could add a title attribute. The part of the code in the single.php would look like this:
div class="back-to-top-1"> <a id="back-to-top" href="#" title="Back to Top"> <i class="fa fa-angle-up"></i> </a> </div>Second: You could add a paragraph below this div. In the paragraph you write “Back top Top”, and then you have to center the paragraph below the back to the top arrow, also done in the single.php
I don’t know if you have enough experience with a child theme and CSS to do this.
Please let me know if you need more help.
Karsten
Forum: Themes and Templates
In reply to: [Hueman] How to get rid off this ^ on all my pages and articles?Hi DGLauren,
no, I was not refering to the “Back to top” symbol.
I was refering to a littl arrow which always on the left side of my website. But this came because I was coding something wrong in my functions.php
What kind of hover capition do you want to add? Maybe I can help you.
Forum: Plugins
In reply to: [Fast Secure Contact Form] How to position fields using tableAllright!
Forum: Plugins
In reply to: [Fast Secure Contact Form] How to position fields using tableThank you, but I already know this as you as wrote above.
Here you can see how the subcription form looks now:
I am now using labels on top of fields because that is recommended. This way I can control the width of the fields trough general settings.
I am still not perfectly happy but it was ok, I learned a lot about foms and how to control styling through CSS.
I think I will also remove the two tables I am using here and going back to the method with CSS styling.
Anyway, thank you very much for your help, Mr. Mbrsolution!!!
Forum: Plugins
In reply to: [Fast Secure Contact Form] How to position fields using tableHi Mbrsolution,
thank you for your support.
I finally managed to find the trick.
I have chosen
Reset the alignment styles to labels on left
and that is the reason why I can not control the input text fields through the general styles settings.If I choose
Reset the alignment styles to labels on left
I can control the input text field only through the individual fields CSS inputs.Please let me know if there should exist another possibilty of how to control the input text fields in general and not only individually.
Thank you
Regards,
Karsten
Forum: Plugins
In reply to: [Fast Secure Contact Form] How to delete a formI also would like to know how i can delete forms.
I didn’t find a solution when focusing on point 1 in the above mentioned URL.
I found this solution:
https://wordpress.org/support/topic/plugin-fast-secure-contact-form-delete-some-forms?replies=3
But does there exist an easier way?
Forum: Plugins
In reply to: [Fast Secure Contact Form] How to positon checkbox left and text rightno, this was not a good idea…removing 138px detroys the whole alignment…
I will close this support thread as resolved because using tables is the right solution.
The CSS markup we can discuss in a new thread.
Forum: Plugins
In reply to: [Fast Secure Contact Form] How to positon checkbox left and text rightok, I have removed the
width: 138px;
and now seems to be ok
you can see here my current status:
Forum: Plugins
In reply to: [Fast Secure Contact Form] How to positon checkbox left and text rightNo, in checkbox CSS input doesn’t work:
<input type="checkbox" value="1" name="telefon" id="fscf_field5_4" style="text-align: top; max-width: 25px;">It must be some other place where i can reduce the width of this second table data:
<td style="vertical-align: top; "> <div style="width:138px; float:left; clear:left; text-align:right; padding-top:8px; padding-right:10px;" id="fscf_label5_4"> </div> <div style="text-align:left; float:left; padding-top:10px;"> <span><input type="checkbox" value="1" name="telefon" id="fscf_field5_4" style="text-align: top; max-width: 25px;"> <label for="fscf_field5_4" style="display: none;">Widerruf bestätigen</label></span> </div> <div style="clear:both;"></div> </td>But where? I don’t know where.
Forum: Plugins
In reply to: [Fast Secure Contact Form] How to positon checkbox left and text rightYour advice was good!
Using tables is definitely the right way.
I am close to what I wanted to achieve:
Please take a look here
I am not sure where I can reduce the width of the second table data which contains the checkbox in order to move textarea close to the checkbox.
Do you know?
Forum: Plugins
In reply to: [Fast Secure Contact Form] How to positon checkbox left and text rightThank you. I will try this table solution and let you know…