Forum Replies Created
-
AuthorPosts
-
ChicGeekMember
Hi,
Trying to do the same as described above. I need to duplicate the home-right, middle and left and the bubble. Was able to add the extra widgets, but they appeared below and not in their own bubble.
Can someone post the solution. Any help appreciated!
Thanks,
Elisha
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
ChicGeekMemberHi,
I'm trying to do the same thing in Agency. Can you let me know how you did this. I added an extra row, but want them in their own section and that's where I'm getting stuck. Not sure what to name the hook. I got them in and added the widgets and see I need to duplicate this and that's where I'm stuck:
function agency_home_loop_helper() {
if ( is_active_sidebar( 'home-left' ) || is_active_sidebar( 'home-middle' ) || is_active_sidebar( 'home-right' ) ) {
echo '<div id="home">';
echo '<div class="home-left">';
dynamic_sidebar( 'home-left' );
echo '</div><!-- end .home-left -->';echo '<div class="home-middle">';
dynamic_sidebar( 'home-middle' );
echo '</div><!-- end .home-middle -->';echo '<div class="home-right">';
dynamic_sidebar( 'home-right' );
echo '</div><!-- end .home-right -->';echo '</div><!-- end #home -->';
}
I was reading a thread that had the same question over the weekend and can't seem to find it.
Thanks!
Elisha
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
ChicGeekMemberThanks for the great tips Nick!
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
ChicGeekMemberClosing this thread since it's resolved.
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
ChicGeekMemberHi,
Looks like you fixed it!
Great.
Elisha
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
ChicGeekMemberHi,
Looks like you created your own custom CSS instead of adding your image to #wrap and you also have it added to #body.
First, remove the fixed option and second change it to repeat-x. This will fill from left to right and will show the #f6f6f6 color where the image ends.
body.custom-background {
background-color: #f9f6f6;
background-image: url('http://www.ithacaindy.com/wp-content/uploads/2012/12/body-bg.png') ;
background-repeat: repeat-x; (<--add -x)
background-position: top left;
background-attachment: fixed; (<--remove)
}You should try Firebug to inspect the site and you'll see that there are images attached to a lot of different styles that aren't necessary.
Hope this helps!
Elisha
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
ChicGeekMemberGreat! Glad it helped!
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
November 30, 2012 at 4:42 pm in reply to: Is it possible to change the password for the forums? #2669ChicGeekMemberHi,
Just click your name and it will take you to your profile page where you'll see the option to edit next to your name. You'll be taken to the page where you can change your password.
Hope this helps!
Elisha
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
ChicGeekMemberHi Christine,
Can you include a link to your site.
Just looking at the demo and it's a full-width slider. Do you mean the black behind the excerpt on the left?
Happy to help out if I can.
Elisha
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
ChicGeekMemberHi Herman,
Look for this and remove the text shadow:
#header {
margin: 0 auto;
min-height: 115px;
overflow: hidden;
text-shadow: 1px 1px #000;
width: 100%;
}Hope this helps!
Elisha
The Pixel Spot ♥ A Recommended STUDIOPRESS Customizer ♥ I Tweet
Genesis Junkie + Web & Graphic Designer + Ad World Girl + Student of Life
-
AuthorPosts