iamdawn
Forum Replies Created
-
Forum: Plugins
In reply to: [ImageMapper] Popup not workingCan you help, Tarmo? How can I change the attributes of the tooltip? I want to change the yellow background to white? thank you so much!
Forum: Themes and Templates
In reply to: Center horizontal Nav barForum: Themes and Templates
In reply to: Full size images are cropped in Firefox!!!! Going crazy!When on a large monitor, your image size needs to be larger to fit the full Firefox screen.
Where Safari and Chrome fit a full image width at 1894px wide, Firefox image had to be 2368px to cover width.Forum: Themes and Templates
In reply to: Menu transparent over top of imageThanks, Zeaks, tried that.
I don’t know why the image is not at the top of the page. If I put a margin-top of negative it works…just not on Firefox.Forum: Fixing WordPress
In reply to: Anchor link to another page – arriving at bottomI GOT IT!
Alchymyth…just by being there, you’re helping me to solve my own problems.
Everyone can use a friend like you ??Add this to functions.php
`function remove_more_jump_link($link) {
$offset = strpos($link, ‘#more-‘);
if ($offset) {
$end = strpos($link, ‘”‘,$offset);
}
if ($end) {
$link = substr_replace($link, ”, $offset, $end-$offset);
}
return $link;
}
add_filter(‘the_content_more_link’, ‘remove_more_jump_link’);’Thanks.
Forum: Fixing WordPress
In reply to: Anchor link to another page – arriving at bottomI think I’m in above my head…I’m not very good with php. Would not know how to apply the advice.
I have this:
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
<section id="meet"> <div class="indent clear"> <?php $query = new WP_Query( 'pagename=your-healthcare-team' ); // The Loop if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); echo '<h2 class="section-title">' . get_the_title() . '</h2>'; echo '<div class="entry-content">'; the_content(); echo '</div>'; } } /* Restore original Post Data */ wp_reset_postdata(); ?> </div><!-- .indent --> </section><!-- #meet -->
Forum: Fixing WordPress
In reply to: Custom Header for front pageUG!
I get it.
I was blind.
Thanks ??Forum: Fixing WordPress
In reply to: Custom Header for front pageThanks, alchymyth,
I tried changing the name of my php…but I think Im confused and complicating things.
If my custom header is called: front-page-header.php then how do I call it from my front-page.php?
Forum: Fixing WordPress
In reply to: tutorial on how to use underscoresForum: Fixing WordPress
In reply to: _s sidebar stuck in content area.
Forum: Fixing WordPress
In reply to: _s sidebar stuck in content areaThanks so much. I”m playing with it now and it’s going okay.
I hope I learn enough to help someone else ??Forum: Fixing WordPress
In reply to: _s sidebar stuck in content areaOH!! Thank you!!!!!
I’m so happy!
While I have you, Michal….
Any fast ideas on fixing the header without messing up my formatting?? I”m looking for just content to scroll.Forum: Fixing WordPress
In reply to: _s sidebar stuck in content areaI’ve moved it with a margin -150px…but I’m worried about how that will work out in different browsers. On a mac laptop it’s created a space between the content and sidebar that I don’t like.
So still looking for help ??Forum: Themes and Templates
In reply to: Fixed Header 2012 Child ThemeThanks, I’ll keep trying
Forum: Themes and Templates
In reply to: Fixed Header 2012 Child ThemeThank you.
When I added fixed position, the format got messed up and slid over to the left side of the page, only taking up 1/2 page.