Title: Ramesh (thecodeisclear)'s Replies - page 8 | WordPress.org

---

# Ramesh (thecodeisclear)

  [  ](https://wordpress.org/support/users/thecodeisclear/)

 *   [Profile](https://wordpress.org/support/users/thecodeisclear/)
 *   [Topics Started](https://wordpress.org/support/users/thecodeisclear/topics/)
 *   [Replies Created](https://wordpress.org/support/users/thecodeisclear/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/thecodeisclear/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/thecodeisclear/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/thecodeisclear/engagements/)
 *   [Favorites](https://wordpress.org/support/users/thecodeisclear/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 106 through 120 (of 237 total)

[←](https://wordpress.org/support/users/thecodeisclear/replies/page/7/?output_format=md)
[1](https://wordpress.org/support/users/thecodeisclear/replies/?output_format=md)
[2](https://wordpress.org/support/users/thecodeisclear/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/thecodeisclear/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/thecodeisclear/replies/page/7/?output_format=md)
8 [9](https://wordpress.org/support/users/thecodeisclear/replies/page/9/?output_format=md)…
[14](https://wordpress.org/support/users/thecodeisclear/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/thecodeisclear/replies/page/15/?output_format=md)
[16](https://wordpress.org/support/users/thecodeisclear/replies/page/16/?output_format=md)
[→](https://wordpress.org/support/users/thecodeisclear/replies/page/9/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shortcodes Ultimate - Content Elements] spoiler title](https://wordpress.org/support/topic/spoiler-title/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/spoiler-title/#post-5837209)
 * [@pankaj_vnt](https://wordpress.org/support/users/pankaj_vnt/): I will look into
   the code and respond by Tuesday
 * [@daniel75321](https://wordpress.org/support/users/daniel75321/): I think you
   can customize the css and get equivalent of H2 and H3/H4 in the spoiler. Can 
   you send me a link to your site so that I can help with the custom CSS?
 * PS: It is general practice to open a new thread for issues
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shortcodes Ultimate - Content Elements] Font awesome icon use in text or box, not just button](https://wordpress.org/support/topic/font-awesome-icon-use-in-text-or-box-not-just-button/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/font-awesome-icon-use-in-text-or-box-not-just-button/#post-5836206)
 * Hi,
 * I haven’t been able to nail the hover, but to change the color, you also need
   the `icon_color="#ffffff"` property. The custom CSS needs to address the `a` 
   element like this
 *     ```
       .book-barry2 a {
       	font-size: 44px;
       	color: #ffffff;
       }
       ```
   
 * `<a href="/bookings">[su_note note_color="#c1122f" text_color="#ffffff"][su_service
   icon="icon: edit" size="63" title="Book Barry" class="book-barry2" icon_color
   ="#ffffff"][/su_service][/su_note]</a>`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Dot appearing in slider image – appears to be a link](https://wordpress.org/support/topic/dot-appearing-in-slider-image-appears-to-be-a-link/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/dot-appearing-in-slider-image-appears-to-be-a-link/#post-5837506)
 * I think that should be okay. I looked up the code for the FlexSlider ([https://github.com/woothemes/FlexSlider/blob/master/jquery.flexslider.js](https://github.com/woothemes/FlexSlider/blob/master/jquery.flexslider.js))
   and it does look like the code checks for the number of items (function – `setupPaging`).
   Having just 1 item seems to remove the navigation control.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[CSS] Page Title Redundancy- Issue](https://wordpress.org/support/topic/page-title-redundancy-issue/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/page-title-redundancy-issue/#post-5832732)
 * As you mentioned, Products link takes you to a page while the others seem to 
   be posts. Hence the title has a different class. I will extend what Barnez wrote
 *     ```
       .page-title, .entry-title {
         display: none;
       }
       ```
   
 * Edit: @Barnez beat me to it 🙂 You could still combine the CSS if you wish or
   have two separate entries.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Dot appearing in slider image – appears to be a link](https://wordpress.org/support/topic/dot-appearing-in-slider-image-appears-to-be-a-link/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/dot-appearing-in-slider-image-appears-to-be-a-link/#post-5837500)
 * If you are using just a single image, do you really need a slider? The dot is
   just nivo slider’s navigation button (similar to the slider you see in the top
   slider).
 * If you absolutely must use the slider, I would suggest that you hide the div `
   nivo-controlNav` with custom CSS as `display:none;`
 * PS: This will not affect the slider on top, since the sliders are different. 
   However, any other page that uses Nivo Slider will be affected by the CSS change
   I have suggested.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shortcodes Ultimate - Content Elements] Font awesome icon use in text or box, not just button](https://wordpress.org/support/topic/font-awesome-icon-use-in-text-or-box-not-just-button/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/font-awesome-icon-use-in-text-or-box-not-just-button/#post-5836072)
 * Do you want the icon between the text or like a header? If you want it like a
   header on top?
 * I found that you can trick SU to use the service shortcode to output just the
   icon and nothing else.
 *     ```
       [su_note][su_service icon="icon: edit" size="33" title="Note"][/su_service]How do I use font awesome icons (namely, 'icon-edit') inside a note using SU?
   
       I can do this easily for a button, yes, but I want to use it inside something else, especially a note but also a box if possible.
       [/su_note]
       ```
   
 * This will place the icon at the top of the note with a title “Note”
 * If you want the icon to float right/left to the text, you can use this
 *     ```
       [su_note][su_service icon="icon: edit" size="33" title="" class="fltleft"][/su_service]How do I use font awesome icons (namely, 'icon-edit') inside a note using SU?
   
       I can do this easily for a button, yes, but I want to use it inside something else, especially a note but also a box if possible.
       How exactly do I do this?
   
       Font awesome gives out the html but within wordpress and shortcodes ultimate, I can't seem to make
       <code><i class="icon-edit icon-2x pull-left icon-border"></i></code> work.
   
       Also, just want to shout out how much I LOVE using shortcodes Ultimate. Much easier and better than using Woothemes shortcodes.
   
       Thanks much for your help!
       [/su_note]
       ```
   
 * and add the custom css (Plugin Settings page > Custom CSS)
 *     ```
       .fltleft {
       	float:left;
       }
       ```
   
 * Here is how the output from the second part works (with custom css)
 * [http://thecodeisclear.in/wp-content/uploads/2015/02/note-icon.jpg](http://thecodeisclear.in/wp-content/uploads/2015/02/note-icon.jpg)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shortcodes Ultimate - Content Elements] spoiler title](https://wordpress.org/support/topic/spoiler-title/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/spoiler-title/#post-5837073)
 * The entire title comes in one `div`, so it is not directly possible to edit part
   of the text and change its color.
 * Would you be open to customizing this plugin to suit your needs? The plugin is
   really flexible and adding new fields can be done in under 30 mins.
 * PS: The site looks really good. Kudos!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Buttons/Links?](https://wordpress.org/support/topic/buttonslinks/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/buttonslinks/#post-5837070)
 * Welcome to WordPress.
 * Are you trying to create button links in a menu (or) are you trying to create
   button links within a page/post that links to other content on your site?
 * For the first, you will need to add links under `Appearance` > `Menus` and select
   the pages you want to add to the menu.
 * If you are trying to create buttons that link from post content to other areas
   of the website, I would recommend a Shortcode Plugin such as [https://wordpress.org/plugins/shortcodes-ultimate/](https://wordpress.org/plugins/shortcodes-ultimate/)
   which will let you create clickable buttons.
 * If I am totally off the mark, please let me know with additional information &
   screenshots.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [taking site offline](https://wordpress.org/support/topic/taking-site-offline/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/taking-site-offline/#post-5837069)
 * You can use a Maintenance Plugin such as this [https://wordpress.org/plugins/maintenance/](https://wordpress.org/plugins/maintenance/)
   for setting you site to maintenance mode. The site will still be live, but no
   one will be able to access any content.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Featured Image in Pure & Simple Theme](https://wordpress.org/support/topic/featured-image-in-pure-simple-theme/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/featured-image-in-pure-simple-theme/#post-5832264)
 * I have responded to your question on the theme support page. It is a feature 
   in the Customize section.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Pure & Simple] Featured Image in Post](https://wordpress.org/support/topic/featured-image-in-post-3/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/featured-image-in-post-3/#post-5836600)
 * I downloaded the theme and found the location of this setting. Under themes, 
   click on `Customize`. The live preview of the site will open up. In the menu 
   to the left, expand “Basic Settings” and check the `Hide Featured Image on Full
   Post` box. You should no longer see the featured image in the post page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timeline For Categories] "Older posts" vs "Newer posts"](https://wordpress.org/support/topic/older-posts-vs-newer-posts/)
 *  Plugin Author [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/older-posts-vs-newer-posts/#post-5672358)
 * Thank you for the feedback. I think it is a great idea. I will work on it and
   give this plugin a much needed upgrade 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Featured Image in Pure & Simple Theme](https://wordpress.org/support/topic/featured-image-in-pure-simple-theme/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/featured-image-in-pure-simple-theme/#post-5832102)
 * You would probably get a better solution from the theme’s support forum. However,
   a quick fix for you is to update style.css. Search for .featured-image-single
   and add the `max-width` property like this
 *     ```
       .featured-image-single {
           float: left;
           margin: 1.5rem 2rem 1.5rem 0;
           max-width: 100%;
       }
       ```
   
 * One thing I can see if that you are using the same featured image as the first
   image in your post. Do you really want two same images one after the other?
 * I haven’t looked in depth, but from the code it appears that there is a feature
   to hide the featured image when viewing the post alone. You can enable that and
   prevent duplicate images from appearing.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Table wordpress formatting table width](https://wordpress.org/support/topic/table-wordpress-formatting-table-width/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/table-wordpress-formatting-table-width/#post-5832099)
 * I think you will need to add the `table-layout` property to the table like this
 *     ```
       .tablepress {
           border: medium none;
           border-collapse: collapse;
           border-spacing: 0;
           margin-bottom: 1em;
           table-layout: fixed;
           width: 100%;
       }
       ```
   
 * (other settings are already in tablepress-combined.min.css)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Edit the "More" That](https://wordpress.org/support/topic/edit-the-more-that/)
 *  [Ramesh (thecodeisclear)](https://wordpress.org/support/users/thecodeisclear/)
 * (@thecodeisclear)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/edit-the-more-that/#post-5739666)
 * How the `more` tag is displayed, is controlled by the theme and where your post
   content is displayed. What is the theme that you use?

Viewing 15 replies - 106 through 120 (of 237 total)

[←](https://wordpress.org/support/users/thecodeisclear/replies/page/7/?output_format=md)
[1](https://wordpress.org/support/users/thecodeisclear/replies/?output_format=md)
[2](https://wordpress.org/support/users/thecodeisclear/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/thecodeisclear/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/thecodeisclear/replies/page/7/?output_format=md)
8 [9](https://wordpress.org/support/users/thecodeisclear/replies/page/9/?output_format=md)…
[14](https://wordpress.org/support/users/thecodeisclear/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/thecodeisclear/replies/page/15/?output_format=md)
[16](https://wordpress.org/support/users/thecodeisclear/replies/page/16/?output_format=md)
[→](https://wordpress.org/support/users/thecodeisclear/replies/page/9/?output_format=md)