Jump to content

Milada

Members
  • Posts

    63
  • Joined

  • Last visited

Recent Profile Visitors

5,489 profile views

Milada's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. What do you mean? What is to be done? How can I solve the code issue?
  2. I see, thank you Ingolme. So probably there is no link to the stylesheet. I used this code: " /* Content Box ------------------------------------------------------------ */ .content-box-purple { margin: 0 0 25px; overflow: hidden; padding: 20px; } .content-box-purple { background-color: #e2e2f9; border: 1px solid #bebde9; } " which I simply copied to a style.css file. There is something wrong with this, is there?
  3. Hello Ingolme, thank you for understanding the issue. What do you mean by stylesheet was not included properly? Thank you. Kind regards, Milada
  4. Hi all, I found this code <div class="content-box-purple">text</div> to use for a box in a post. I copied this code: /* Content Box ------------------------------------------------------------ */ .content-box-purple { margin: 0 0 25px; overflow: hidden; padding: 20px; } .content-box-purple { background-color: #e2e2f9; border: 1px solid #bebde9; } to a style.css file. However, the box does not show in the post. I checked all plugins for compatibility and when deactivating them all, the box still does not show. Do you have an idea of what might be wrong? Thank you, Milada
  5. Hi Ingolme, can YOU please reply to the topic, as dsonesuk´s replies are quite cocky. I had to leave the thread and started a new one, because is NOT willing to help. What code is to be used to put the text in red circle under the other text, to where the arrow is directing? Thank you, Milada text-under-text.pdf
  6. Hi all, what code is to be used to put the text in red circle under the other text, to where the arrow is directing? Thank you, Milada text-under-text.pdf
  7. Sorry, but I do not understand what you wanted to say by that.
  8. Hi all, what code is to be used to put the text in red circle under the other text, to where the arrow is directing? Thank you, Milada text-under-text.pdf
  9. Milada

    Newsletter styling

    Hi all, I would like to ask you what code should I use so that a text written in a box of a newsletter disappears when I start typing into the box. Further, what code should I use to get rid of the double line in the box for an email? See attached. Thank you in advance. Milada
  10. Milada

    Newsletter styling

    Hi all, I would like to ask you what code should I use so that a text written in a box of a newsletter disappears when I start typing into the box. Further, what code should I use to get rid of the double line in the box for an email? See attached. Thank you in advance. Milada
  11. I have created this code: genesis_register_sidebar( array( 'id' => 'alonside-posts-sidebar', 'name' => __('Alonside Posts', 'wellness' ), 'description' => __('This is a sidebar that goes alongside the posts in the #content.' ), ) ); add_action( 'genesis_before_loop', 'wellness_alongside_posts_sidebar' ); /** Loads a new sidebar alongside the posts in the #content */ function wellness_alongside_posts_sidebar() { echo '<div class="alongside-posts-sidebar">'; dynamic_sidebar( 'alongside-posts-sidebar' ); echo '</div>'; } Can you please tell me if it´s correct? I would like to have a sidebar alongside the content on the left? What should be added? Thank you, Milada
  12. I imagine it would be axially symmetric. So to find the parameters, I look for them in the style.css? Could you specify more closely the position? Thank you.
  13. Hallo, thank you for your feedback. How do I find out about the order of the elements in HTML are and the styles? What margin would you set? Thank you in advance, Milada
  14. Hi all, I have a sidebar which is now to the right from the articles on posts/pages (incorporated in the theme). Now I would like to add a widget sidebar that would be to the left from an article (of a post/page). To register a sidebar, I would use this code: function wpb_widgets_init() { register_sidebar( array( 'name' => __( 'Main Sidebar', 'wpb' ), 'id' => 'sidebar-1', 'description' => __( 'The main sidebar appears on the right on each page except the front page template', 'wpb' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' =>__( 'Front page sidebar', 'wpb'), 'id' => 'sidebar-2', 'description' => __( 'Appears on the static front page template', 'wpb' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'wpb_widgets_init' ); Then to position it to the left from an article, the CSS class should be like this?: .sidebar { float: left; margin-right: -100%; max-width: 413px; position: relative; width: 29.4118%; } Thank you in advance for your help. Milada
  15. Hi all, my blog launch is dependent on the kNews form functioning. So far the subscription form returns this reply (after entering the data as name, surname, e-mail address): Your e-mail address seems to be incorrect. Please check it back. Other people have the same problem - see this thread: https://wordpress.org/support/topic/email-address-seems-to-be-incorrect/#post-8565419 After reading it do you have any idea of what could be the clue to the solution? I would be happy for any help. Thank you! Milada
×
×
  • Create New...