Tareq
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fruitful] Custom CSS intermittenly not changing themeIt works when I do it.
Post a link to your site, I’ll have a look.
Forum: Themes and Templates
In reply to: Making Changes to Child ThemesDo you have FTP Access to your host?
Forum: Themes and Templates
In reply to: [Vantage] non-image slider with soundcloud embeds?Hi,
As far as I am aware, SoundCloud uses HTML embed codes. Unfortunately I believe the basic version of Meta Slider does not support the use of HTML or HTML content in slides. However, this is present in the upgrade to Meta Slider Pro.
More info here.
Of course, there are other HTML specific Sliders available in the WP Plugins directory.
Forum: Themes and Templates
In reply to: [evolve] Sidebars do not show up on the Widgets screenIGNORE THIS POST…MADE IN ERROR
Forum: Themes and Templates
In reply to: [Custom Community] full width header not happeningThe file this is in is your theme’s style.css located in the root directory of your theme. However if you haven’t done so already, I would recommend creating a child theme so if your theme gets an update then your custom styles don’t get overwritten.
More information on child themes are available here.
I’d recommend the Orbisius Child Theme plugin if you want smooth, 1-click child theme creation.
Edit: There are other plugins available but this is the one I use for my projects.
Forum: Plugins
In reply to: [WooCommerce] Get rid of Billing AddressIf I’m catching your drift, you should be able to include this in your functions.php file (make sure you’re using a child-theme).
// Hook in add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); // Our hooked in function - $fields is passed via the filter! function custom_override_checkout_fields( $fields ) { unset($fields['order']['order_comments']); return $fields; }Find more information on this here
Hope this helps!
Forum: Fixing WordPress
In reply to: Can't login Using WP-ADMIN – Blank White ScreenTry this!
Forum: Themes and Templates
In reply to: [Highwind] Header Logo in the middleHi, this should work:
<img src=”path/to/image.png” alt=”” style=”margin 0 auto;” />
Let me know,
Tareq
Forum: Themes and Templates
In reply to: Customizing my blogYou’re welcome, sorry I’ve been away for a few days.
Forum: Themes and Templates
In reply to: [Clean Retina] Remove text and link slideshowYou can, either by selecting the image as it sits in the Text Area and choosing the ‘edit’ icon displayed over the image. You can also remove links from the ‘Add Media’ button located above the text area. If you select the image you would like to edit, and in the right column remove the Caption and Link data.
Forum: Themes and Templates
In reply to: [Theme: Oxygen] Increasing width on postsHello, sorry for my lack of response today, I’ve been away from my computer for a while.
Did you import the parent stylesheet using
@import?Forum: Themes and Templates
In reply to: [Theme: Oxygen] Increasing width on postsI would strongly advise you to create a child theme if you haven’t already. More information can be found here.
Hope your problem is solved!
Tareq
Forum: Themes and Templates
In reply to: [Theme: Oxygen] Increasing width on postsRemember this will affect all posts, sitewide + also ensure you’re editing the correct CSS selectors.
Forum: Themes and Templates
In reply to: [Theme: Oxygen] Increasing width on postsYour CSS has been minified so please be very careful when you edit it. Ideally make a backup of it first, then open
style.min.css1. Find (Ctrl+F):
.hentry .archive-thumbnail
2. Add property:float: right;
3. Find:#content
4. Change:widthto100%That should do it, and the image alignment should be perfect too.
Forum: Themes and Templates
In reply to: [Theme: Oxygen] Increasing width on postsManaged to get you a full width post, however the posts image alignment is not perfect.