azish1
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] Blog Summary Page Post ExcerptUsing the “screen option” excerpt feature, only the excerpt shows in the blog summary page. There is no link for “continue” to the full post. How can this be added? Is it possible to do this without modifying the php files?
Thanks.
The code worked to hide the nav. Thanks.
I figured out the arrow issue.
Is it possible to have the icon link to two separate portfolio pages so the items in each portfolio link back to the correct portfolio page?
Forum: Themes and Templates
In reply to: [Virtue] Blog List summary pageIt works now. Thanks.
Forum: Themes and Templates
In reply to: [Virtue] Blog List summary pageI also added <!–more–> in my post and the following code in the blog page but still don’t see “Read more here” on my page.
[readmore=”Read more here”]
Forum: Fixing WordPress
In reply to: Remove background color from featured image postsHere is the link. The main background is still the same, however, a gray rectangle which is the background color of the posts have popped up behind the featured images. I am trying to remove this gray rectangle.
Forum: Fixing WordPress
In reply to: Change background color of each pageAfter removing !important the code to turn all pages to #f0eaf7 no longer works.
body.page .site-content,
body.page .content-area {
background: #f0eaf7;
}But page id 15 turns to #8b8b8b with this code.
body.page.page-id-15 #content,
body.page.page-id-15 #primary {
background: #8b8b8b;
}Forum: Fixing WordPress
In reply to: Change background color of each pageForum: Fixing WordPress
In reply to: Change background color of each pageI tried:
body.page.page-id-15 .site-content,
body.page.page-id-15 .content-area {
background: #8b8b8b;
}The color for page id 15 is still #f0eaf7
Forum: Fixing WordPress
In reply to: Change background color of each pageIs it possible to change the color for all pages to one color and a few selected pages to another color?
I used this combo, it turns all pages to light gray but page 15 did not change to dark gray(#8b8b8b).
Thanks!
body.page .site-content,
body.page .content-area {
background: #f0eaf7!important;
}
body.page-id-15 .site-content,
body.page-id-15 .content-area {
background: #8b8b8b!important;
}Forum: Fixing WordPress
In reply to: Change background color of each pageIt works! Thanks!
Forum: Fixing WordPress
In reply to: Change background color of each pageThanks!
Also this worked:
#post-8 {background-color: #f0eaf7 !important;}But there is still a white border around the page. Any way to change that color?
Strange, maybe some of my other CSS code or my plugins is causing this not to work on my site…
I added the code but still don’t see a difference.
#site-navigation ul > li > a {
padding-bottom: 5px !important;
padding-top: 5px !important;
}#site-navigation .screen-reader-text a {
padding-bottom: 10px !important;
padding-top: 10px !important;
}Thanks!
I added the following code and also removed the social icon plugin but still don’t see a difference.
#site-navigation ul > li > a {
padding-bottom: 5px !important;
padding-top: 5px !important;
}Thanks!
Azi