glynne
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Update Failed: Download failed. cURL error 28Hi,
I am having the same problem – and am only able to upldate the core and plugins manually. Once I have done so it still tells me that they are out of date inspite of the fact the version they are telling me to update to is also stated as the version I am running suggesting that the information is simply not being transmitted as to what is actually operating at the time. We don’t have https would that be an issue perhaps? Any ideas would be helpful – thanks.
Forum: Themes and Templates
In reply to: [AccessPress Lite] Customizing Photo SliderThe theme documentation details how to do this. It is towards the lower part of the page.
https://accesspressthemes.com/documentation/theme-instruction-accesspress-lite/
Forum: Themes and Templates
In reply to: [AccessPress Lite] Customizing Photo SliderGo to the documentation for the theme – it explains it well.
https://accesspressthemes.com/documentation/theme-instruction-accesspress-lite/Forum: Themes and Templates
In reply to: [Aplite] Background Image not functioning as intendedHi,
Just change the background color for the page section of the site. You can add your custom css under “Theme Options” “Tools” and if you add the following css if you use a boxed layout then the box area will be white and the area larger than your boxed area will show your background imgage.
.boxed-layout #page {
margin: 40px auto 0px;
background: #FFF none repeat scroll 0% 0%;
border: 1px solid #64160E;
box-shadow: 0px 1px 10px #64160E;
border-radius: 4px;
clear: both;
position: relative;
}Forum: Themes and Templates
In reply to: [Byblos] Scrolling menuOn your custom css you could try putting:
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
margin: 0 0 1.5em;
overflow: visible;Currently on the theme stylesheet the overflow is hidden for the main menu.
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
margin: 0 0 1.5em;
overflow: hidden;Thank you. Worked a treat.