Navigation überspringen

[Gelöst] Unable to style an element

This support ticket is created vor 5 Jahren, 7 Monaten. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 -
- 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 14:00 – 18:00 13:00 – 18:00 -

Supporter timezone: America/Jamaica (GMT-05:00)

Dieses Thema enthält 11 Antworten, hat 2 Stimmen.

Zuletzt aktualisiert von Pete vor 5 Jahren, 7 Monaten.

Assistiert von: Shane.

Author
Artikel
#1293945
Styling Issue.png

Hi there,

On this test page: versteckter Link

You'll see dynamic numbers above an icon in a disc. (see image)

Now I have styled the icons how I would like however I have targeted the numbered row, just the same as the icons...this with a div class. (this below)

However no CSS styling will take effect. Any thoughts would be great.

<div class="cott-number"><div class="row">
<div class="col-sm-2">[types field='guests' format='FIELD_VALUE'][/types]</div>
<div class="col-sm-2">[types field='bedrooms' format='FIELD_VALUE'][/types]</div>
<div class="col-sm-2">[types field='bathrooms' format='FIELD_VALUE'][/types]</div>
<div class="col-sm-2">[types field='dogs-number' format='FIELD_VALUE'][/types]</div>
<div class="col-sm-2"></div>
<div class="col-sm-2"></div>
</div></div>

#1293959

Shane
Supporter

Sprachen: Englisch (English )

Zeitzone: America/Jamaica (GMT-05:00)

Hi Pete,

I see you are using the default bootstrap classes.

Could you let me know the css you are using for this ?

Thanks,
Shane

#1293993

Hi there,

While I have heard of Bootstrap classes I have never knowingly used Bootstrap...no idea if I am now 🙂

New to Toolset and using it, in part, with Elementor.

I have all the CSS for everything we have done in Appearance > Theme Editor.

Everything is working so far, no idea where else you would add CSS to or why.

Hope that helps.

#1294087

Shane
Supporter

Sprachen: Englisch (English )

Zeitzone: America/Jamaica (GMT-05:00)

Hi Pete,

I would like to see the exact css that you are using here to style this. Can you copy and paste it here.

Thanks,
Shane

#1294127

Hi ther Shane,

As a test I am adding the below. If I remove the i it breaks things.

Simply trying to add a round background to 'each' number then intend to position them.

Exactly like we did on another of our sites here: versteckter Link
(scroll down abit and you'll see a row with a very similar look)

.cott-number i {
border-radius: 70px 70px 70px 70px;
background: #73AD21;
width: 20px;
height: 20px;
}

Thank you.

#1294167

Shane
Supporter

Sprachen: Englisch (English )

Zeitzone: America/Jamaica (GMT-05:00)

Hi Pete,

So taking a look at your css.

I believe it isn't targeting the numbers at all.

You need to do it like this.

.cott-number .col-sm-2 {
border-radius: 70px 70px 70px 70px;
background: #73AD21;
width: 20px;
height: 20px;
}

Thanks,
Shane

#1294207

Hey Shane,

Just added your CSS, thanks. However no change?
versteckter Link

It's odd how I can target and make changes to the icon and yet not the text?

#1294209

Just added !important to all your CSS and it kind of works.

Adding this styling to all the columns.

I'm going to get rid of the columns and add the dynamic fields to an unordered list and see if that works.

Late here in the UK, will sort in the morning and get back to you 🙂

Pete

#1295027

Shane
Supporter

Sprachen: Englisch (English )

Zeitzone: America/Jamaica (GMT-05:00)

Hi Pete,

In some cases you will need to use the !important attribute to overwrite the predefined styles for the elements.

Please update with your progress when possible.

Thanks,
Shane

#1295089

Hey Shane,

Using the code below to achieve this result with the icons and numbers: versteckter Link

Is there anyway of adding something so I can make the number smaller without effecting the icon?
And is there anyway of adding a background color to the icon without effecting the number?

I have been working on this for hours and cannot achieve the layout we have on other sites due to Toolset code so will have to work with what you see.

<div class="cott-number"><div class="row">
<div class="col-sm-3"><i class="fas fa-user-friends"> [types field='guests' format='FIELD_VALUE'][/types]</div>
<div class="col-sm-3"><i class="fas fa-bed"> [types field='bedrooms' format='FIELD_VALUE'][/types]</div>
<div class="col-sm-3"><i class="fas fa-bath"> [types field='bathrooms' format='FIELD_VALUE'][/types]</div>
<div class="col-sm-3"><i class="fas fa-paw"> [types field='dogs-number' format='FIELD_VALUE'][/types]</div>
</div></div>

#1295221

Shane
Supporter

Sprachen: Englisch (English )

Zeitzone: America/Jamaica (GMT-05:00)

Hi Pete,

Actually yes, you can wrap the number in a span, and style the span class separately.

Example


<div class="col-sm-3"><i class="fas fa-user-friends"> <span class='num'>[types field='guests' format='FIELD_VALUE'][/types]</span></div>

Thanks,
Shane

#1295303

My issue is resolved now. Thank you Shane.