reggie_winters
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Ultra Simple Paypal Shopping Cart] text input feild for variationsI also need to know how to add this, anyone know?
Forum: Themes and Templates
In reply to: [Hatch] Removing author, date, categoryThis is either the code that bagharoy provided above, or something with the meta, maybe something like:
.meta { display: none; }
Try opening it in chrome, right clicking where you need to edit and clicking inspect element. It will give you the exact selectors to use, them add ondisplay:none
Hope that helps! I would give you the exact code, but I am not at a desktop currently.Forum: Themes and Templates
In reply to: Changing feature image display area for portrait imagesI have found the only way to do so is cropping the images. Hoping someone can come along and help you out. But, if it does come to cropping, you can crop to the proportions that you need to (not exact size), as I have seen that helps with responsive featured images!
Forum: Themes and Templates
In reply to: CSS TroublesSorry, I did manage to get them perfect! Thanks. Do you have any tips on how to make them stick to the bottom of the screen though? It currently looks like this and I would like for the content to stick to the bottom (especially the sidebar) like it was before ??
Forum: Themes and Templates
In reply to: CSS TroublesNow it looks like this. Still overlapped. Here is all of my css that I have added that applies to the left/right content.
.one-sidebar-left #pagelines_content #sidebar-wrap {
background: rgba(109, 101, 120, .9);
float: left;
color: #FFFFFF;
width: 50%;
height: 100%;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
align: center;
}.one-sidebar-left #pagelines_content #column-wrap {
top-margin: 10px;
background: rgba(109, 101, 120, .9);
color: #FFFFFF;
height: 100%;
width: 50%;
border-top-left-radius: 15px;
border-top-right-radius: 15px;align: right;
float: right;
}Forum: Themes and Templates
In reply to: CSS TroublesAndrew, the reason is, if I do not put “position: fixed;” the sidebar and the content does not even line up side by side, but on top of each other. It looks like this!
Forum: Fixing WordPress
In reply to: Rounding Corners on WordPress Content SectionYes
Forum: Fixing WordPress
In reply to: Rounding Corners on WordPress Content SectionYa. I know how to round corners with CSS, but what would I point it to with my stylesheet? Like…
NAMEHEREIDK
{
border-radius:25px;
}