Categories Block Styling Question

TheSalt

Active member
Hello Gang,

I'm still hammering out some problems here and there and this one is next up. I removed a few things like the albums block and it left me with this little problem. I'm guessing it is a top margin or padding on the categories block but I'm not sure how or where to fix it. Also I'm not sure if this is something that I should be asking here or in the "Styling and Customization Questions" forum here?

I'm trying to make the top of the categories block level with the tab bar to it's right. I'm also having an issue with the spacing of the RSS Feed button to the left. I would like to bring the button up and also widen the margin of the bottom of the button to keep it from overlapping as well. Below are a few screen shots and a link to the page.

Thank you for any help.
Nick

http://www.reefpeeps.com/identification/

I would like to bring the "Categories" block up to meet the tab bar.
1.webp


I would like to bring up the "RSS Feed" button to center it top and bottom between the tab bar and the thumbnail block
2.webp
 
The sidebar one, add the following to EXTRA.css:
Code:
.container .xengallerySideBar
{
    margin-top: -10px;
}

And for the RSS feed button, quick and dirty, add to EXTRA.css also:
Code:
.xengalleryContainer .short.pageNavLinkGroup
{
    margin: -10px 0 10px 0;
}
 
The sidebar one, add the following to EXTRA.css:
Code:
.container .xengallerySideBar
{
    margin-top: -10px;
}

And for the RSS feed button, quick and dirty, add to EXTRA.css also:
Code:
.xengalleryContainer .short.pageNavLinkGroup
{
    margin: -10px 0 10px 0;
}
Thank you Chris, those worked perfectly. I hope you are having a happy New Years! :)
 
Top Bottom