cableghost
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HTML Validation ErrorsThank you. I will give closer examination.
-Scott
Forum: Fixing WordPress
In reply to: Need Help Inserting Image into HeaderThank you.
-Scott
Forum: Fixing WordPress
In reply to: HTML Validation ErrorsThank you for your input, very interesting and will prove helpful.
The validation process would incorrectly mark some tags wrong…like <div class=”something”>. This would give a validation error.
From what I could see, most of the ID errors were not errors at all…they were not missed pid, they were really ID’s.
Image closing…should I use /> even if the full address link is given?
-Scott
Forum: Fixing WordPress
In reply to: Need Help Inserting Image into HeaderThank you; I will give this a try.
The Follow Me image is NOT in the code…that’s actually my problem; I did not know where to place it or how to call it other than placing HTML.
Regarding positioning though…if my header was 100px height and 925px width and I wanted to place it at the bottom-right of the header in the respective div, could you provide possible css code?
-Scott
Forum: Fixing WordPress
In reply to: Centering image in FirefoxDiscovered the issue.
The built-in WP editor’s version of center was/is the problem. If I use the TinyMCE center tag, then it works.
Thank you.
Forum: Fixing WordPress
In reply to: Centering image in FirefoxThere’s a few errors I noticed during validation that I’ll work on.
I did discover though if I use…
<p align=center>This works, but the built-in centering of my TinyMCE-advanced editor does not.
-Scott
Forum: Fixing WordPress
In reply to: Rounded Corners for Text boxThank you Clayton, though I may still not understand. Please correct my errors below…
I place the following 2 scripts in my Header.php <head> section…
<script type="text/javascript" src="http://www.mysite.com/scripts/jquery.corners.js"></script> <script type="text/javascript" src="http://www.mysite.com/scripts/jquery.corners.min.js"></script>I create css code such as…
#divsample { position: relative; margin-left: auto; margin-right: auto; margin-top: 3em; padding: 0; text-align: left; background-color: #eeeeee; width:80%; }Finally, I create the <div> below…
<div id="divsample">Rounded</div>What am I missing to make this function?
-Scott
Forum: Fixing WordPress
In reply to: Rounded Corners for Text boxSemantics. I actually wonder how people that make such comments have the time to do it. If you could offer anything positively substantial to this topic, I’m all ears (though I realize that statement isn’t true either).
-Scott
Forum: Fixing WordPress
In reply to: Rounded Corners for Text boxOnce again, I’m having difficulty in executing this code. I’m not certain how to call the jquery script.
Place the following code in the <Head> section of Header.php:
<script>jQuery(document).ready( function($){ $('.rounded').corners(); });</script>Here’s the box to be placed in the post:
<div class="rounded">Simple Example</div>Here’s the CSS code:
.rounded{background-color:#acc; padding:5px}If jquery.corners.js is located in a folder called /scripts on the root directory, how do I call it into action?
-Scott
Forum: Fixing WordPress
In reply to: Rounded Corners for Text boxThanks Lori,
1. where do I place that script and how do I activate it?
2. Could I place the code in my header.php template?
3. How do I make the layer/div recognize it…is it as simple as adding class=”rounded” as the example above?
-Scott
Forum: Fixing WordPress
In reply to: How do I remove Footer in Sticky PostsBummer on both accounts. Though thank you much for the other code input.
-Scott
Forum: Fixing WordPress
In reply to: How do I remove Footer in Sticky PostsThat did the trick…thank you.
2 last items for the sticky post…
- I understand the CSS addition, though how do I call it into action? Do I place is_stick code somewhere?
- How can I keep the sticky post from appearing in the Recent Posts list?
-Scott
Forum: Requests and Feedback
In reply to: target=”_blank”Thank you!
Forum: Fixing WordPress
In reply to: How do I remove Footer in Sticky PostsRegarding CSS. Though I have added code to my Stylesheet (.sticky), no design changes occur in the sticky post. Do I still need to add some sort of If then statement to my index.php?
Forum: Fixing WordPress
In reply to: How do I remove Footer in Sticky PostsThank you. That took care of the postfooter. I did receive the following error message though when applying the header code:
Parse error: parse error, unexpected T_STRING, expecting ‘:’ in /home/content/s/i/e/siegrists/html/9001v/wp/wp-content/themes/9001Ventures_blue/index.php on line 63
I also tried just adding the is_sticky parts to my original script (see below):
`<span class=”PostHeader”>
<?php if(!is_sticky()) :?>” rel=”bookmark” title=”<?php printf(__(‘Permanent Link to %s’, ‘kubrick’), the_title_attribute(‘echo=0’)); ?>”>
<?php the_title(); ?>
<?php else the_title();endif;?>
</span>`