cooljosh3k
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bouquet] How can I reduce the total width of my theme layout?Oh darn. Seems it doesn’t like portrait layout on iPad. Not a big deal though.Oh nevermind, looks like my iPad was just using an old cache for some reason.
- This reply was modified 8 years, 4 months ago by cooljosh3k.
- This reply was modified 8 years, 4 months ago by cooljosh3k.
Forum: Themes and Templates
In reply to: [Bouquet] How can I reduce the total width of my theme layout?Oh nice. Thank you!
Forum: Themes and Templates
In reply to: [Bouquet] How can I reduce the total width of my theme layout?I tried this in FireBug and it fixes the branding, but the content overlaps the widget still. It also leaves a large transparent area below the widget.
Forum: Themes and Templates
In reply to: [Bouquet] How can I reduce the total width of my theme layout?Thanks, but this kinda messed up my site badly.
I have reverted back to before those changes, but did take a screenshot to point out the issues caused: https://postimg.org/image/tqk06ds2h/Forum: Themes and Templates
In reply to: [Bouquet] Content and Widget area overlaps…Great! Thank you so much.
Everything is pretty much perfect now. I have opened a new ticket for my other issue, since it is not related too much.
Forum: Themes and Templates
In reply to: css is ignored in my widgetNevermind. I went to each of the pages called by random_content.html and set them to have style=”margin:0″ and it worked out that way.
Forum: Themes and Templates
In reply to: [Bouquet] Content and Widget area overlaps…Ah, okay. Thanks.
With all that done is is so very close to perfect now. For some reason there is the little tiny corners at the top showing through.
Forum: Themes and Templates
In reply to: [Bouquet] Content and Widget area overlaps…Everything looks so much better now! ??
Only problems I found that stood out about that was the colour (I just adjusted it) and that having
#main { background: #edf6fe; }
Makes it have a thin white border around everything. Not having it though, leaves a big transparent area below the sidebar.
Forum: Themes and Templates
In reply to: [Bouquet] Content and Widget area overlaps…A big improvement. Thanks.
The sidebar widget does not sit flush against the navigation and content areas though. It was doesn’t blend in.
Forum: Themes and Templates
In reply to: [Bouquet] Content and Widget area overlaps…Okay, thanks. I don’t know which parts I need to add back in.
What is the next step? The content overlaps and the widget does not line up with the bottom of the page.
Is there any way I can thank you for all this support? I could not find any link to donate or similar methods.
Forum: Themes and Templates
In reply to: [Bouquet] Content and Widget area overlaps…Alright. I have deleted header.php, index.php, page.php, sidebar.php and single.php from my child theme. I have removed the sidebar code from my functions.php file so it just looks like this now:
<?php add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); }
I also removed the following code from my style.php file:
#secondary-wrapper { width: 100%; background-color: transparent; } #secondary-sidebar { float: right; width: 168px; margin-top: -8px; text-align: right; position: relative; z-index: 10 } .widget { margin: 0px 0px 0px 0px; padding-bottom: 0.01em; } .widget_authors img { float: right; padding-right: 0; padding-left: 10px; }
This does appear to have the original sidebar function again, albeit in the wrong place with some other issues I will have to fix up too.
What is the next step?
Forum: Themes and Templates
In reply to: [Bouquet] Content and Widget area overlaps…I used to have a monthly earnings / donations sort of progress bar. It was horizontal and just below navigation.
Since I am no longer using that, I guess I could go back to using that for this purpose.
I tried that code, but it does kinda make things mess up below my vertical banner ad widget.
How can I revert all the way back to using the original sidebar and go from there?
Forum: Themes and Templates
In reply to: [Bouquet] Content and Widget area overlaps…I tried this, but the problem still exists. It is easily visible on pages like tf2tightrope.com/projects
I have the header.php file in my child theme and the relevant part now looks like this:
<div id="main"> <nav id="access" role="navigation" class="navigation-main clearfix"> <h1 class="menu-toggle section-heading"><?php _e( 'Menu', 'bouquet' ); ?></h1> <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'bouquet' ); ?>"><?php _e( 'Skip to content', 'bouquet' ); ?></a></div> <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> </nav><!-- #access --> <div id="primary">
Forum: Themes and Templates
In reply to: [Bouquet] Navigation area 2px too short?Ah, thankyou. That did the job.
As a side note, I also had to update
#secondary-sidebar { width: 165px; }
to
#secondary-sidebar { width: 168px; }
Forum: Themes and Templates
In reply to: [Bouquet] Content and Widget area overlaps…Just noticed this actually appears on other pages too, even when viewed under normal conditions.
Is there some way I can fix this? ??