jquadra
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Safari loading responsive version of site on DesktopI figured it out. It was my notes in css between */
I removed that and it’s back to normal!Forum: Themes and Templates
In reply to: Safari loading responsive version of site on DesktopThis code below is adding the issue in Safari but I don’t know why. It’s used to style the images on this page: http://www.newsite.jessicaquadra.com/galleries
} ul.img-list { list-style-type: none; margin: 0; padding: 0; text-align: center; } ul.img-list li { display: inline-block; height: 363px; margin: 0 0; position: relative; width: 238px; } ul.img-list img { border-radius: 8px; } span.text-content { background: rgba(0,0,0,0.5); border-radius: 10px; color: white; cursor: pointer; display: table; font-size: 15px; font-family: 'Old Standard TT', serif; line-height: 278px; letter-spacing: .14em; height: 363px; left: -1px; position: absolute; top: -1px; width: 238px; opacity: 0; -webkit-transition: opacity 500ms; -moz-transition: opacity 500ms; -o-transition: opacity 500ms; transition: opacity 500ms; } span.location { background: rgba(0,0,0,0); border-radius: 10px; color: white; cursor: pointer; display: table; font-size: 14px; font-family: 'Old Standard TT', serif; font-style: italic; line-height: 325px; letter-spacing: .14em; height: 363px; left: -1px; position: absolute; top: -1px; width: 238px; opacity: 0; -webkit-transition: opacity 500ms; -moz-transition: opacity 500ms; -o-transition: opacity 500ms; transition: opacity 500ms; } span.text-content span { display: table-cell; text-align: center; vertical-align: middle; } span.location span { display: table-cell; text-align: center; vertical-align: middle; } ul.img-list li:hover span.text-content { opacity: 1; } ul.img-list li:hover span.location { opacity: 1;Forum: Themes and Templates
In reply to: Align Header img and Menu in Twenty SixteenI ended up getting rid of the header image and instead adding it as a background image to the menu adding this to style.css:
.site-header-main {
background: url(“http://newsite.jessicaquadra.com/wp-content/uploads/2016/04/cropped-Jessica-Quadra-logo-mobile-gold.png”);
background-size: contain;
background-repeat: no-repeat;
float: left;
padding-left: 265px;Forum: Themes and Templates
In reply to: Align Header img and Menu in Twenty SixteenSo far I’ve added this:
.site-header-main {
float: left;
font-size: 11px;
}
.header-image {
clear: none;Now header image is to the right of the menu and i’d like for it to be on the left. I’ve tried this with no luck:
.header-image {
clear: right;Forum: Themes and Templates
In reply to: Horizontally aligning header image and nav bar/menuThis worked – thank you so much!
Thanks! I checked it out and it is a conflict with my theme. I submitted a ticket with the theme designer to see if he can help me out with the issue. Thanks again.
Hi, I am not using any add-ons.
I have added the shortcode to a page I titled “Blog” (it is not a post page, just a page) here.Though I’m using a page titled ‘blog’, if I go to ‘Posts’ from my dashboard, a list comes up of the feed items as though they are individual posts, and the missing one is not listed there. You can see this list here.
You’ll see the missing post in the imported feed items however, here.The feed items list on the front end can be seen here:
http://www.jessicaquadra.com/mobile/blog/Here are the screenshots of the settings. <a href=”http://www.jessicaquadra.com/mobile/wp-content/uploads/2015/04/settings-1.jpg
“>Here and here.I really appreciate your help!
Hi,
Yes, I was looking at the general settings info for Feed to Post- sorry.
What I mean is the most recent item/post is listed under ‘Feed Items’ so it updated correctly but it doesn’t show up on the post page here:
http://www.jessicaquadra.com/mobile/blog/
I’m wondering if I’m missing a step. I assumed that as the plugin fetches items, they are automatically posted to the post page. I’m using this shortcode: [wp-rss-aggregator]Forum: Themes and Templates
In reply to: Changing Content Width in Sidebar Template Post PageI figured this out finally and realize I was making a mistake. I just needed to edit #content width in style.css. I had done this and it was changing the other pages as well. I think I was messing with the #primary width as well and since I wasn’t clearing the cache, I was seeing the primary content getting changed along with the content width. I don’t even know if this makes sense. I am pretty new to this so it took me quite a while to figure out. :/
Forum: Fixing WordPress
In reply to: Change content width for different pagesI’d love to know the exact code you used! I’m having this same issue now and can’t seem to find a solution.
Forum: Themes and Templates
In reply to: Changing Content Width in Sidebar Template Post PageI figured out how to change the width of the sidebar using this:
#secondary { float: right; margin-right: 7.6%; width: 100px;So what I need to figure out now is how to change the content width in only the post page. I’ve been searching the forums all evening and can only find code using page id, but I can’t figure out how to find the page id to my posts page.
Forum: Themes and Templates
In reply to: Changing the Content Width of a Single PageI’m wondering what you would use to change the content width in only the posts page. Is there something I can use in place of the page id?