• Resolved hughfordb123

    (@hughfordb123)


    On my website, the important updates section uses the plugin. There is currently pink color on the post titles and a poor layout. I want to use CSS to change the colors, the font style, and the layout.

    I’m using the Hello Elementor theme and editing the style.css file but nothing changes. Asking for some assistance in getting more insight on which file I should edit in the theme and what classes I should use to accomplish what’s needed.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Kybernetik Services

    (@kybernetikservices)

    Dear @hughfordb123 .
    Thank you for reaching out.
    There are several reasons why the style modification is not taken. It depends on how the system is developed and finally which style is higher ranked. The hierarchy is the key. A good starting point to understand is this article https://www.w3schools.com/css/css_specificity.asp.
    You should try not to use !important, for example. And to define the selector for the style as best as possible.
    Please understand, further support for styling is out of my scope. I hope you understand.
    Thank you for using Recent Posts Widget With Thumbnails.

    Hi,
    It is quite interesting to note that several websites could very well have the same HTML code but their styling or CSS is what would make them different! Talking about CSS in particular, graphic designer displays their creativity through it. Not only does it give the web designer control over the appearance of the web pages but also aids in creating a visual hierarchy through parameters like shape, color, space, and size.

    Refer to this code:

    <!doctype html>
    <html>
      <head>
        <link href="style.css" rel="stylesheet" />
      </head>
      <body>
        <h1>Welcome to InterviewBit!</h1>
        <h2> Learning CSS!</h2>
        <p> Hello World!</p>
      </body>
    </html>
    

    Refer this article to know more

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Custom CSS’ is closed to new replies.