> 1. 1st tab not floating left – it looks like there’s a space for another tab but it’s empty
That’s a horizontal accordion, not tabs. The Sky theme you are using adds 35px of margin to the left hand side of the widget. You should be able to fix this with the following custom CSS:
.post ol li ol.squelch-taas-haccordion {
padding-left: 0;
}
How you add the custom CSS will depend on a few things. If you don’t know how to add custom CSS then just say and I’ll give you some pointers.
> 2. I copied and pasted the code after activating the plugin but can’t seem to figure out how to work it. All I want is to do a bulletin point of information for each tab with questions and answers.
The plugin documentation is here: https://squelchdesign.com/wordpress-plugin-squelch-tabs-accordions-shortcodes/ (Check the “Horizontal Accordions” section)
There is an entire page of examples of horizontal accordions you can try out here: https://squelchdesign.com/wordpress-plugin-squelch-tabs-accordions-shortcodes/horizontal-accordions-demo/
A simple example would be:
[haccordions title="" width="800" height="320" hwidth="28" activateon="click" active="0" speed="800" autoplay="false" pauseonhover="true" cyclespeed="6000" theme="jqueryui" rounded="false" enumerate="false"]
[haccordion title="Pane 0"]
Accordion pane 0 content
[/haccordion]
[haccordion title="Pane 1"]
Accordion pane 1 content
[/haccordion]
[haccordion title="Pane 2"]
Accordion pane 2 content
[/haccordion]
[haccordion title="Pane 3"]
Accordion pane 3 content
[/haccordion]
[haccordion title="Pane 4"]
Accordion pane 4 content
[/haccordion]
[/haccordions]
> 3. I will need about 5 tabs .. I’ve changed the width to 670 .. does the height change automatically depending on the content?
No the height is fixed. You set it with the height=
attribute, similar to the width=
attribute.
> 4. So far the fonts have changed a few times (was quirky) and I’d like to match it with the font I’m using for the site if possible.
Your theme defines the fonts, but also the chosen widget theme can specify fonts. How to fix this would depend on the fonts you want to adjust.