bhale7
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Aweber opt-in form — Is there a better way to do it?Jerry, you’re a genius! That worked like a charm. Thank you for the help.
Forum: Themes and Templates
In reply to: Twenty Eleven Child Theme – Sub-Menu Bars not looking rightThis helped me out a ton. I was able to format everything the way I wanted it! And it looks good on all of the browsers.
Thanks for your help!
Forum: Themes and Templates
In reply to: Post title is a different size on home page and post page…That worked like a charm! Thank you so much.
Is there anyway to move the header up a little bit further in the actual post page? On the Home page it’s all the way at the top, but on the post page it’s down about an inch. I tried putting “padding-top: -8px;” to see if that would work, but it didn’t change anything.
Forum: Themes and Templates
In reply to: Post title is a different size on home page and post page…“Hey guys, I’m using a child theme for twentyeleven…”
Forum: Themes and Templates
In reply to: Adding an image above content and below menu bardNevermind! I figured that out, too. I added:
margin-top:-8px
That did it, now I just have to create the image. Thanks again for all your help.
Forum: Themes and Templates
In reply to: Adding an image above content and below menu bardOkay, I got it to center, but I can’t get it to move up. It’s almost like it’s as high as it can go, because when I change the padding it only effects the bottom of the image.
Forum: Themes and Templates
In reply to: Adding an image above content and below menu bardBy the way, thank you for your help!
Forum: Themes and Templates
In reply to: Adding an image above content and below menu bardThat worked! I’m really new to all of this and the only way I was able to alter the page as much as I did was by googling the effect I wanted and changing it in the style.css sheet in my child theme.
The .php files are a whole new beast for me to tackle.
Now that I have the image on there, what kind of code do I use to center it and change the padding? I tried adding:
align="middle"
And
align="center"
But nothing happened.
https://elitegamingcomputers.com
If you look at my page now, the image is there, but it is sitting on the right side of the page, and the padding is uneven on the top and bottom. I’m assuming I need to enter some kind of “align” and “padding” code, but I’m not sure how to arrange it.
Forum: Themes and Templates
In reply to: Adding an image above content and below menu bardAlright, I copied the header.php file over, but now I’m having trouble with the right code to put in. I googled putting images in .php files and used this:
<?php $image = url ("https://elitegamingcomputers.com/wp-content/uploads/2012/07/1test.png"); $height = 280; echo '<img src="'.$image.'" style=width:"' . $width . 'px;height:' . $height . 'px;">'; ?>
It turned everything except my header and my menu bar white (probably because the image I’m using is just a test image and it’s all white.)
I entered the code after <div id=main> and before it and both yielded the same results. I’m assuming that the code I’m using is wrong. Any ideas?
Forum: Themes and Templates
In reply to: Adding an image above content and below menu bardThanks for responding alchymyth. I’m not really familiar with how to work with .php stuff.
Right now I just have the style.css in my child theme and have imported the twentyeleven theme. I’ve made all my changes through that thus far.
To do this, do I need to make a .php file in my child theme, or change it in the editor in my wordpress dashboard?