The logo is not visible on desktop computers but displays correctly on tablets and mobile devices

The header logo is not visible on desktop view, however it appears when I reduce the screen size to mobile or tablet.

I attempted to make changes to the site using the customization tool, but unfortunately there doesn't seem to be an option for this specific issue.

Check out the website at acelebanon.com

Answer №1

To have the logo displayed on desktop, add the code snippet below to your customizer settings [Appearance -> Customize -> Additional CSS]:

.pro_logo a {
    display: inline-block;
    width: 100px;
}

Hopefully this solves the issue.

Answer №2

The issue lies in the excessive padding applied to the .pro_logo class.

.pro_logo { padding: 22px 130px; }

To resolve this, it is recommended to reduce the padding to a more reasonable range of 1-2em (16 - 32px). By making this adjustment, the logo should display properly once again.

Update the code as follows:

.pro_logo { padding: 1.5em; }

Answer №3

To ensure your logo displays correctly on all devices, consider adjusting the padding property of your logo wrapper as shown below:

<style>
.pro_logo { padding: 22px 0; }
</style>

By making this change, you should see improvements in how your logo is presented across different screen sizes.

Answer №4

.pro_logo {
    padding: 22px 130px;
}

Consider adjusting the margin instead of the padding to align the logo as needed.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

When using font size in rem units, it will remain consistent across different screen sizes and not be subject to scaling

When setting padding, margin, and font size using rem units, I noticed that on larger screens the output looks good. However, on smaller screen devices, the sizes do not reduce proportionally - instead, the measurements from the larger screen persist. Wh ...

A dynamic jQuery plugin that replicates the smooth page sliding animation found in iPhone apps

Currently, I am in search of a jQuery plugin that has the capability to navigate users to different pages on a website with a sleek sliding animation, similar to what we see in some widely used iPhone apps. Despite my best efforts to create this functional ...

Why does the flex-start and flex-end values correspond to the top and bottom positions when using the flex-direction property set

I am attempting to organize text and buttons into a row, with the buttons aligned on the right side and the text on the left side. My approach involves creating a flexbox layout and assigning items the appropriate classes for alignment. html, body { widt ...

Personalizing the User Interface of Azure AD B2C using dynamic HTML

After customizing my own html and CSS for Azure AD B2C sign-up and sign-in policy using the steps outlined in this resource, I have successfully created custom Sign-Up and Sign-In pages. However, my next goal is to make the sign-up page dynamic by passing ...

nyroModal automatically adapts its dimensions according to the size of the webpage, not the size of

A situation has arisen with a link that opens an image using nyroModal. While everything is functioning correctly, the Modal window appears in the center of the page instead of aligning with the middle of the browser window. As a result, only the upper por ...

The Twitter Bootstrap modal pops up over the menu, making the links unclickable

Currently, I am employed at a website called . If you navigate to the "Serviços" section on the homepage, you will encounter a row of icons and a blue button labeled "saber mais". Clicking on this button triggers a modal box that displays additional infor ...

Maintaining a consistent distance from the baseline while adjusting the font size dynamically in an HTML text element

Looking to lock a text element to the baseline while also resizing its font dynamically when the window is resized. I created a demonstration on jsfiddle. However, the issue arises when the window size changes; the distance from the bottom of the window i ...

What could be causing the compatibility issue between fr units and grid-template-rows in CSS grid?

I'm having trouble getting the row height to change using fr units in my grid-template-rows. It seems to work fine with other units like pixels, but not with fr. I find it confusing that the fr units work perfectly fine with grid-template-columns, so ...

Sending text-only messages to customers through Woocommerce emails

By implementing the following code snippet, I have successfully added text to the Woocommerce-order-processing-email: add_action( 'woocommerce_email_before_order_table', 'add_order_email_instructions', 0 ); function a ...

How can CSS OpenType be used to substitute a specific letter throughout the text with a character from Stylistic Set 1, while ensuring the rest of the letters remain

Our Objective: We aim to swap out the two-story lowercase "g" with the single-story version across our entire website text. https://i.sstatic.net/mqpP9.png Challenge: The Rotunda font we use (Rotunda from TipoType Foundry) includes a Stylistic Set 1 ...

Unusual problem encountered on mobile devices with custom font-face and Font Awesome font combination

Experiencing difficulties with font-face implementation on mobile devices. The custom font-face definition for the Rex font is as follows: @font-face { font-family: 'RexBold'; src: url('RexBold.eot?#iefix') format ...

Tips for aligning controls in a column using Bootstrap

My coding issue: <div class="col-lg-4"> <label>Expiration ID</label> <div class="row "> <div class="col-lg-5"> <input type="text" class="form-control input-sm" id="TextIDExpire" /> </div> < ...

Fundamentals of object property in jQuery and Javascript

Currently working on creating a new property named startPosition and setting the top property to equal the button's current top value in CSS. Below is the jQuery code snippet: var morphObject = { button: $('button.morphButton'), c ...

Trouble with a persistent footer on a webpage using HTML5 and CSS

Check out my code below: <footer> <div id="footer"> <div class="footer-column" id="footer_column1"> <nav class="footer-link"> <ul> <li>Home</li> <li>Home</li> <li>Home</li> <li>Home& ...

"Is there a way to position a button at the bottom using HTML and

Is there a way to position my button after the reviews stars? The browser output screenshot shows the desired layout: https://i.sstatic.net/nh63E.png I want my post review button to be displayed after the reviews stars, not in a row. Here is the code s ...

What seems to be the issue with Collapse.js in Bootstrap 3.3.4 on this page?

I am currently utilizing Bootstrap version 3.3.4. All of my resources are linked relatively and the HTML file is in the correct location for access. I am creating a 'Learn More' button that should display a collapsed unordered list either above ...

Display a variety of images when hovering over different elements

I have a logo in various colors that I want to cycle through on hover. The default image is black, then changes to red on the first hover, yellow on the second hover, and blue on the third hover. This cycle continues back to black and repeats. Any suggesti ...

I'm having trouble getting the width set to 100% to work on my website. Can you assist me in making my website

I'm in the process of creating my first portfolio website for myself. It looks fantastic when viewed on a desktop computer, but once I try to open it on a mobile device, it's not responsive at all. I have experimented with setting the width to 10 ...

The function $(...) does not recognize tablesorter

Currently, I am encountering issues with the tablesorter plugin as my system is unable to recognize the existing function. It is unclear whether there might be a conflict with other JavaScript files, especially since I am implementing changes within a Word ...

When using Ruby and Rack on Heroku to serve a static site, the CSS styling may not be

Trying to deploy a static site consisting of HTML, CSS, font, and image files with Ruby Rack has been a bit challenging. While the HTML displays perfectly in Chrome when running it locally, the CSS assets do not seem to be loading or being applied to the H ...