NM6
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sparkling] Replace featured slider with a different oneWhere do you want the new slider to show up? Are you using a child theme? I replaced mine (Royal slider) by putting the code in my custom page template, at the position where i wanted it to show up.
Forum: Themes and Templates
In reply to: [Sparkling] Color?You will have to change that in the css. Go to any online color swatch site or an image editing program like Photoshop , pick the exact shade of pink, and copy the hex code like this one ( #F2F2F2).
If you are familiar with using Firebug, then its easy to find the CSS for the font you are trying to change. Replace the entry like this:
h2 { color: #f2f2f2; }
Its best to make custom changes in a child theme always.
Lovely sites @alan, especially the Zelandonii.com I like the way your have themed the dark design.
Just change the words “Read More” to “Download Now” – like this –
Add this code to where you want the button to appear.
Forum: Themes and Templates
In reply to: [Sparkling] Menu problem in archive pageHello,
The problem is still there. I read through the forums but could not get similar issue. Please help. I’ve put a test site online and here is the link – https://bit.ly/1O5z6hR
I’ve also updated the theme to its current version.
Forum: Themes and Templates
In reply to: [Charitas Lite] Page teaser imageHI,
Ohh…I didn’t realize. Thanks for pointing out. Guess I’ll let it be like that for the moment.
Thanks a lot!
Forum: Themes and Templates
In reply to: [Charitas Lite] Page teaser imageHi Victor,
Yes, here – https://themes.wplook.com/charitas/about-us/
Forum: Themes and Templates
In reply to: [Hueman] Using TABS in Hueman themeSorry but im still in local dev stage. However, I was able to fix the issue by looking deeper in the Hueman code, and applying:
.alx-tabs-nav li a:hover, .alx-tabs-nav li.active a {
background: #3b8dbd;
color: #f3f3f3;
}I was using the a:active; instead li.active a worked ??
Forum: Themes and Templates
In reply to: [Hueman] Problems with columns and shortcodesFinally I managed to find a solution for the columns, and that too from within the Hueman demo. On the columns demo page sourcode, Alex has used grid with column classes. I copied those and they worked, with minor tweaks!
For those who might want to use columns in Hueman, here’s how:
<div class="grid one-fourth"> content </div> <div class="grid one-half"> content </div> <div class="grid one-fourth last"> content </div> <div class="clear"> </div>
You can easily mange your own combination of widths. Take a look at hueman style.css line 362 – base grid. And don’t forget to put “clear” after the columns to clear the floats.
Forum: Themes and Templates
In reply to: [Hueman] Problems with columns and shortcodesThanks for sticking with me so far…but it doesn’t work. That’s what confused me. I’ve done this earlier too, and if you look at my very first post, I had tried the “do_shortcode”. Usually you just have to put it in the functions.php once and that takes care of it. But I followed your version also, and put it in the single-d.php around the code yet it doesn’t activate the columns.
Forum: Themes and Templates
In reply to: [Hueman] Problems with columns and shortcodesYou’ve got me all wrong. First, I wouldn’t create a single-x.php if I wasn’t modifying it. Secondly, I am not using columns in the normal post. I am setting them up in the single-x.php template itself. Here’s a section of the code from my modified single-x.php:
<?php while ( have_posts() ): the_post(); ?> <article <?php post_class(); ?>> <div class="post-inner group"> <h1 class="post-title"><?php the_title(); ?></h1> <?php if( get_post_format() ) { get_template_part('inc/post-formats'); } ?> <div class="clear"></div> <div class="entry"> <div class="entry-inner"> <div class="facts group"> [column size="one-third"] <div id="facts"> <h2>Facts</h2> <ul> <li><b>Climate - </b><?php the_field('climate'); ?> </li> <li><b>Altitude - </b><?php the_field('altitude'); ?></li> <li><b>Best Time to Visit - </b><?php the_field('best_time_to_visit'); ?> </li> </ul> </div> [/column] [column size="one-third"] <div id="gmap"> <div class="responsive-iframe-container"> <p><?php the_field('google_map'); ?></p> </div> </div> [/column] [column size="one-third" last="true"] <div id="weather"> <p><?php the_field('weather'); ?></p> </div> [/column] </div> <!-- Introduction --> <p><?php the_field('introduction'); ?> </p>
the code in the divs within php tags is from ACF.
Forum: Themes and Templates
In reply to: [Hueman] Problems with columns and shortcodesI created a custom template moddifying single.php for my custom category.
Forum: Themes and Templates
In reply to: [Hueman] Problems with columns and shortcodesYes, bdbrown, like I said above, it works on normal post, but I am trying to use it in my template file. Which sometimes needs using <do_shortcode> filter in functions.php, and I added that too. But still am unable to use it through the template. I guess there is some piece of code needed to enable the column shortcode to work via templates, which I am missing.
Forum: Themes and Templates
In reply to: [Hueman] Header Space above and below LogoI checked your site, and it still shows the top and bottom padding to be 30px, and to be clear this is in your parent theme style.css. Try uploading your child theme’s style.css again and hard refresh ( ctrl+f5) the site and check.
Forum: Themes and Templates
In reply to: [Hueman] Header Space above and below LogoJust doing this:
#header .pad { padding-top: 0; padding-bottom: 0; }
will do it.I could change your #header .pad top and bottom padding on my Firefox with Firebug to zero. It should work. Try refreshing a cpl of times.