icedub
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Where to add CSS for wrapping text around image?Thanks, worked great!
Worked perfectly.. Thanks!
Oh- Forgot to add that you can see an example / try it out at https://www.cloud-coach.net/general/take-control-of-technology/
@camu Thanks again for your support and for creating a kick-ass plugin!
@bh_wp_fan This is exactly what I needed. Thanks!
Ethan
https://cloud-coach.netYes, my other emails from wordpress do come from this email address. Do you have any ideas on how I could change it, or should I take it up with BlueHost?
Thanks,
EthanForum: Fixing WordPress
In reply to: Taking site from live to local for editing using Bitnami?Thanks!
Forum: Themes and Templates
In reply to: How to add space above website?I had a friend help me out.. He did what I was unable to do.. In his own words:
Ok… so I placed: <div id=”bodybg”> in the header.php file just below <body>
And: </div> in the footer.php just above <div id=”footer”>
And: Added the new div to the CSS file… then pulled the background color and image code from the body CSS code and placed it in the new div CSS.Basically… the background was displayed using the body tag and is now displayed using a new DIV element tag just below the body. This allows the HelloBar to properly slide-down everything BELOW the body of the page.
Forum: Fixing WordPress
In reply to: Taking site from live to local for editing using Bitnami?Thanks..And I can use the export feature in WP to do that, right?
Forum: Themes and Templates
In reply to: How to add space above website?Again, thank you so much for your help. If you’d like a beta invite to hellobar, I’d be happy to share one. Also, the theme anatomy is helpful, and I also think I need to brush up on CSS so it doesn’t all feel so confusing!
I haven’t been successful at getting the page to slide down properly, and if it would be easier would just like to try adding the space at the top. You mentioned using margins if the background color was what I want, and it is (black). I’d just like some additional black at the top of the screen. Where do I add the margins?
Forum: Themes and Templates
In reply to: How to add space above website?Oh wait.. also just noticed that the sides of the page are cut off. Definitely need to close that #newDiv somehow..
Forum: Themes and Templates
In reply to: How to add space above website?Well, I found it in header.php and added
<!-- Begin #wrapper --> <div id="newdiv"> <div id="wrapper"> <!-- Begin #header --> <div id="header">
The odd part is, I don’t see where to close it. There’s no
<!--End #wrapper -->
in the header.php file. The bottom of the header.php is:<!-- End #header --> <!-- Begin #content --> <div id="content" class="clearfix">
Fortunately, just adding the above made the site behave like I wanted- making it so the whole page slides down when the hello bar comes in. However, I don’t want to leave any loose ends. Where would I close this off?
Forum: Themes and Templates
In reply to: How to add space above website?I followed part one and added the code you showed me before the wrapper div. My layout structure section of style.css looks like this:
#newdiv { width:100%; background: #F0F0F0 url(images/bk_body.png) repeat-x; } #wrapper { width:960px; margin:0 auto; }
However, I’m not seeing where I add the new <div> to make the background show up. Would that be somewhere in index.php? (Sorry for my ignorance here, you’ve been really helpful and I’m almost there ?? )
Forum: Themes and Templates
In reply to: How to add space above website?Also- FYI the “slide” feature works properly with the background declaration removed from the body and added to the wrapper. It’s just messing up the look of the site with all that white space on either side of the body.
Forum: Themes and Templates
In reply to: How to add space above website?Removing the background declaration from the body style to the wrapper left some unfortunate white-space on either side of the body: image
I tried adding the background declaration to both the body style and the wrapper, which seemed OK at first. However, the Hello bar still only seems to slide center of the page down, leaving the margins in tact: image
Maybe we could try for option 2- how would i add 25px of black space above the whole website?