Rachel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Flash not supported?IT WORKS! I also had to add the “https://”
Thank you SO much Andrew! ??
Forum: Fixing WordPress
In reply to: Flash not supported?Alright, I used this file path:
<script type="text/javascript" src="https://rachelsilberman.com/CristinBishara/wp-content/themes/OnePager/swfobject.js"></script> <script type="text/javascript"> swfobject.registerObject("myFlashContent", "9.0.0", "expressInstall.swf"); </script>
When signing up for the WordPress site via Bluehost I didn’t know the name I was calling it would be the URL, otherwise it would have been all lower case.
Still doesn’t work… should I do the file path for all the anchor tags?
Forum: Fixing WordPress
In reply to: Flash not supported?The animation is in the same folder as the index is on. I tried doing it your way (rachelsilberman.com/CristinBishara/wp-content/themes/OnePager/animation.swf) but it still doesn’t work. I’ll try something other than swfobject. Thank you anyway! ??
Forum: Fixing WordPress
In reply to: Flash not supported?That is the full path. I’ve been trying to get a hold of the person who created the theme but he hasn’t responded (even did a follow up email).
Forum: Fixing WordPress
In reply to: Lists with text and images. How to get it to look good (CSS)Sometimes I put a class inside the ul tag and use my style.css to style to make it work there. So on the post it will look like
<ul class="name"> <li>list</li> </ul>
Then go to style.css and put:
.name{ style-it: here; }
That could be a solution. ??
Forum: Themes and Templates
In reply to: [Theme: Twenty Thirteen] Creating a left sidebar?Yes, I used a different theme called Heatmap Adaptive.
Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Adding footer widgetI DID IT. MY GOD THAT TOOK FOR FREAKING EVER!
Love your theme and gave you a 5/5 stars. I’ll use this one again in the future for sure!
Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Adding footer widgetOkay, okay. I got the footer down (wewt!) except it’s only on the home page.
functions.php
<?php if ( function_exists('register_sidebar') ) { register_sidebar(); register_sidebars(3, array('name'=>'Footer %d')); } ?>
The bottom of page.php
<div class="footer-bottom"> <div id="footerwidgets"> <div id="footer-left"> <ul class="footer-list"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer 1') ) : ?> <li> <?php endif; ?> </ul> </div> <div id="footer-middle"> <ul class="footer-list"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer 2') ) : ?> <li> <?php endif; ?> </ul> </div> <div id="footer-right"> <ul class="footer-list"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer 3') ) : ?> <li> <?php endif; ?> </ul> </div> </div> <br> <br clear="all" /> </div>
and cssed it a little. When I put the html on the footer.php file it goes above the header. Can you give me a hint on how to make the footer appear on all pages?
Sorry for being such a bother about this. This footer is the last detail on the website before I’m (hopefully) done and send it to the client.
Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Adding footer widgetI’d rather not pay for one widget that might work for me. Maybe if I needed 10 or so plus extra help on my theme, but $67 dollars for a tiny small detail is a no-go for me. Thanks anyway!
Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Adding footer widgetThank you for the compliment!
Yes, my ultimate goal is to have social media icons on the bottom instead of the navigation. Since it’s on your members forum do I have to pay for the widget?
PHP is jibber jabber to me so I try to stay away from it… hard since WordPress is basically PHP/CSS combined. *le sigh*
Forum: Themes and Templates
In reply to: [Theme: Twenty Thirteen] Creating a left sidebar?Nevermind, close this thread. Thanks!
Forum: Fixing WordPress
In reply to: Site hacked! What do I do??Google “Dan Krokos” and you’ll see the opening paragraph is: “Viagra Price Per Pill. Flash what is super force buy clomid online what happens to girl after tey have taken mens viagra what kind of is best. Will cialis keep …”
Do you know what type of code it could be? I don’t know how to read PHP.
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve] Not working in IE (surprised?)Alright, I’ll check it out. Thanks!
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve] Not working in IE (surprised?)I’m in IE8. You would think it’s below that, eh? Nope.
Forum: Fixing WordPress
In reply to: How to get rid of page title on static front page?Oh… I do. I just thought I’d have to live with all of them gone. It works now, just the homepage has the title gone.
Thank you!